diff --git a/web/src/components/dashboard/TopBar.jsx b/web/src/components/dashboard/TopBar.jsx index 2b3aceb..78fe260 100644 --- a/web/src/components/dashboard/TopBar.jsx +++ b/web/src/components/dashboard/TopBar.jsx @@ -19,7 +19,7 @@ For commercial licensing, please contact support@quantumnous.com import React from 'react'; import { Search, RefreshCw, Wallet } from 'lucide-react'; -import { renderQuota } from '../../helpers'; +import { renderQuota, getSystemName } from '../../helpers'; const TopBar = ({ onSearch, onRefresh, loading, user, unreadCount = 0 }) => { const initial = (user?.username || '?').charAt(0).toUpperCase(); @@ -28,7 +28,7 @@ const TopBar = ({ onSearch, onRefresh, loading, user, unreadCount = 0 }) => {
- TokenFactory + {getSystemName()}
diff --git a/web/src/components/dashboard/index.jsx b/web/src/components/dashboard/index.jsx index 15481c7..16f9c49 100644 --- a/web/src/components/dashboard/index.jsx +++ b/web/src/components/dashboard/index.jsx @@ -21,6 +21,7 @@ import React, { useContext } from 'react'; import { UserContext } from '../../context/User'; import { useUserMessageUnreadCount } from '../../hooks/common/useUserMessageUnreadCount'; import { useDashboardData } from '../../hooks/dashboard/useDashboardData'; +import { getSystemName } from '../../helpers'; import TopBar from './TopBar'; import Hero from './Hero'; @@ -78,7 +79,7 @@ const Dashboard = () => {
- TokenFactory · 2026 + {getSystemName()} · 2026
diff --git a/web/src/pages/Home/index.jsx b/web/src/pages/Home/index.jsx index 5a27c29..6cd2d3d 100644 --- a/web/src/pages/Home/index.jsx +++ b/web/src/pages/Home/index.jsx @@ -23,7 +23,7 @@ import { useTranslation } from 'react-i18next'; import { Copy, Check, Code, Terminal, FileCode, Box, Grid3X3, Play, Trophy, PieChart, BookOpen, Search, Sun, Moon, Monitor, Languages } from 'lucide-react'; import { UserContext } from '../../context/User'; import { StatusContext } from '../../context/Status'; -import { stringToColor } from '../../helpers'; +import { stringToColor, getSystemName } from '../../helpers'; /* ================================================================== @@ -755,7 +755,7 @@ function DarkFooter() {
- © 2026 TokenFactory + © 2026 {getSystemName()}