updated client-frontend additions

This commit is contained in:
2025-05-06 17:48:13 +03:00
parent e0ae1ee80a
commit bc43471259
140 changed files with 4320 additions and 1117 deletions

View File

@@ -23,6 +23,7 @@ export const DashboardLayout: React.FC<DashboardLayoutProps> = ({
children,
lang,
activePage,
siteUrls,
}) => {
const [language, setLanguage] = useState<Language>(lang as Language);
@@ -30,7 +31,7 @@ export const DashboardLayout: React.FC<DashboardLayoutProps> = ({
<div className="min-h-screen min-w-screen flex h-screen w-screen">
{/* Sidebar */}
<aside className="w-1/4 border-r p-4 overflow-y-auto">
<ClientMenu lang={language} activePage={activePage} />
<ClientMenu lang={language} activePage={activePage} siteUrls={siteUrls} />
</aside>
{/* Main Content Area */}