website refactor

This commit is contained in:
2026-01-17 16:40:08 +01:00
parent 846667c3d1
commit 6d57f8b1ce
2 changed files with 21 additions and 17 deletions

View File

@@ -1,11 +1,10 @@
'use client';
import React from 'react';
import { DashboardRail } from '@/ui/DashboardRail';
import { Text } from '@/ui/Text';
import { Box } from '@/ui/Box';
import { DashboardRail } from '@/ui/DashboardRail';
import { Stack } from '@/ui/Stack';
import { Trophy, Users, Calendar, Layout, Settings, Home } from 'lucide-react';
import { Text } from '@/ui/Text';
import { Calendar, Home, Layout, Settings, Trophy, Users } from 'lucide-react';
import Link from 'next/link';
import { usePathname } from 'next/navigation';
@@ -62,15 +61,6 @@ export function GlobalSidebarTemplate(_props: GlobalSidebarViewData) {
);
})}
</Stack>
<Box px={6} mt="auto" pt={6} borderTop borderColor="[#23272B]">
<Stack direction="row" align="center" gap={2} mb={4}>
<Box w="8px" h="8px" rounded="full" bg="success-green" />
<Text size="xs" color="text-gray-400" font="mono">
SYSTEM ONLINE
</Text>
</Stack>
</Box>
</Box>
</DashboardRail>
);