diff --git a/src/pages/DashboardPage.tsx b/src/pages/DashboardPage.tsx index b5d9475..8c504c7 100644 --- a/src/pages/DashboardPage.tsx +++ b/src/pages/DashboardPage.tsx @@ -1,74 +1,114 @@ -import React from "react"; +import React, { useState } from "react"; import { routes } from "@/routes"; -import NavbarCentered from "@/components/ui/NavbarCentered"; -import HeroSplit from "@/components/sections/hero/HeroSplit"; -import MetricsSimpleCards from "@/components/sections/metrics/MetricsSimpleCards"; -import FeaturesIconCards from "@/components/sections/features/FeaturesIconCards"; -import FooterMinimal from "@/components/sections/footer/FooterMinimal"; +import Button from "@/components/ui/Button"; +import Card from "@/components/ui/Card"; +import Tag from "@/components/ui/Tag"; +import { LogIn, Database, Users, Activity, CheckCircle2 } from "lucide-react"; export default function DashboardPage() { + const [isLoggedIn, setIsLoggedIn] = useState(false); + return ( -
- ({ name: r.label, href: r.path }))} - ctaButton={{ text: "Login with Discord", href: "/login" }} - /> +
+
+ {!isLoggedIn ? ( + +
+ +
+
+

Server Authentication

+

+ Connect your Discord account to access your personalized dashboard and Supabase database. +

+
+