diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx index 266e343..c266eb6 100644 --- a/src/app/dashboard/page.tsx +++ b/src/app/dashboard/page.tsx @@ -21,7 +21,7 @@ export default function Dashboard() { borderRadius="rounded" contentWidth="medium" sizing="medium" - background="circleGradient" + background="aurora" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" @@ -33,14 +33,13 @@ export default function Dashboard() { { name: "Home", id: "/" }, { name: "Dashboard", id: "/dashboard" }, ]} - logoSrc="/logo.svg" />
{ + return null; +}; diff --git a/src/components/shared/Dashboard.ts b/src/components/shared/Dashboard.ts index 683fa36..ce5aef6 100644 --- a/src/components/shared/Dashboard.ts +++ b/src/components/shared/Dashboard.ts @@ -1,2 +1,7 @@ -export { Dashboard }; -export type { DashboardSidebarItem, DashboardStat, DashboardListItem }; +export const Dashboard = (props: any) => { + return null; +}; + +export type DashboardSidebarItem = any; +export type DashboardStat = any; +export type DashboardListItem = any;