diff --git a/pkgs/ui/public/clan-dark.png b/pkgs/ui/public/clan-dark.png new file mode 100644 index 000000000..dfeea5e21 Binary files /dev/null and b/pkgs/ui/public/clan-dark.png differ diff --git a/pkgs/ui/public/clan-white.png b/pkgs/ui/public/clan-white.png new file mode 100644 index 000000000..21735dd1a Binary files /dev/null and b/pkgs/ui/public/clan-white.png differ diff --git a/pkgs/ui/src/app/dashboard/page.tsx b/pkgs/ui/src/app/dashboard/page.tsx deleted file mode 100644 index c230c6a2c..000000000 --- a/pkgs/ui/src/app/dashboard/page.tsx +++ /dev/null @@ -1,61 +0,0 @@ -"use client"; -import { RecentActivity } from "@/components/dashboard/activity"; -import { AppOverview } from "@/components/dashboard/appOverview"; -import { NetworkOverview } from "@/components/dashboard/NetworkOverview"; -import { Notifications } from "@/components/dashboard/notifications"; -import { QuickActions } from "@/components/dashboard/quickActions"; -import { TaskQueue } from "@/components/dashboard/taskQueue"; -import { tw } from "@/utils/tailwind"; - -interface DashboardCardProps { - children?: React.ReactNode; - rowSpan?: number; - sx?: string; -} -const DashboardCard = (props: DashboardCardProps) => { - const { children, rowSpan, sx = "" } = props; - return ( -