diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx new file mode 100644 index 0000000..c13a67b --- /dev/null +++ b/src/app/dashboard/page.tsx @@ -0,0 +1,25 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; + +export default function DashboardPage() { + return ( + + +
+

Your Dashboard

+
+

Welcome to your AI resume dashboard. Start by uploading or creating a new resume.

+
+
+
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index cb24d5b..d7606c1 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -37,7 +37,7 @@ export default function LandingPage() { ]} brandName="ResumeAI" button={{ - text: "Get Started", href: "/auth"}} + text: "Get Started", href: "/dashboard"}} /> @@ -66,7 +66,7 @@ export default function LandingPage() { ]} buttons={[ { - text: "Get Started Free", href: "/auth"}, + text: "Get Started Free", href: "/dashboard"}, { text: "See How It Works", href: "#how-it-works"}, ]} @@ -162,7 +162,7 @@ export default function LandingPage() { { id: "free", badge: "Free", price: "₹0", subtitle: "Get started with the basics", buttons: [ { - text: "Get Started", href: "/auth"}, + text: "Get Started", href: "/dashboard"}, ], features: [ "2 Resume generations", "Basic keyword check", "AI content rewrite"], @@ -170,7 +170,7 @@ export default function LandingPage() { { id: "pro", badge: "Pro", price: "₹499/mo", subtitle: "For career power users", buttons: [ { - text: "Get Pro", href: "/auth"}, + text: "Get Pro", href: "/dashboard"}, ], features: [ "Unlimited generations", "Advanced ATS tailoring", "PDF Export functionality", "Priority Support"],