diff --git a/libs/portal/pages/index/index.tsx b/libs/portal/pages/index/index.tsx index 5ff22f705..9a0ead48d 100644 --- a/libs/portal/pages/index/index.tsx +++ b/libs/portal/pages/index/index.tsx @@ -2,12 +2,14 @@ import { Banner } from '@cuhacking/portal/ui/dashboard/banner' import { HackathonCountdown } from '@cuhacking/portal/ui/dashboard/hackathon-countdown' import { Stat } from '@cuhacking/portal/ui/dashboard/stat' import { UserStatus } from '@cuhacking/portal/ui/dashboard/user-status' +import { Sidebar } from '@cuhacking/portal/ui/sidebar' +import { Button } from '@cuhacking/shared/ui/button' const constants = { user: { - name: 'Hasith', + name: 'Saim', }, - hackathonDate: new Date(2025, 3, 14), + hackathonDate: new Date(2025, 2, 14), status: 'pending', stats: [ { @@ -15,22 +17,32 @@ const constants = { value: 1000, }, { - label: 'Money Raised', // Fixed key from 'name' to 'label' + label: 'Money Raised', value: '$12,230', }, ], } -export function Index() { +export function Home() { return ( -