Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b094d826a6 | |||
| e4be42d1c6 | |||
| bf35ac4bc7 | |||
| c93acbb0b3 | |||
| 6f09fb05e3 | |||
| ee2a5a1c52 | |||
| 361a5c11c3 |
37
src/app/dashboard/page.tsx
Normal file
37
src/app/dashboard/page.tsx
Normal file
@@ -0,0 +1,37 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
|
||||
export default function DashboardPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{ name: "Dashboard", id: "/dashboard" },
|
||||
]}
|
||||
brandName="ResumeAI"
|
||||
button={{ text: "Get Started", href: "/get-started" }}
|
||||
/>
|
||||
</div>
|
||||
<main className="container mx-auto p-12 min-h-screen">
|
||||
<h1 className="text-4xl font-bold mb-8">Your Dashboard</h1>
|
||||
<div className="bg-card p-8 rounded-lg shadow">
|
||||
<p className="text-lg">Welcome to your AI resume dashboard. Start by uploading or creating a new resume.</p>
|
||||
</div>
|
||||
</main>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -37,7 +37,7 @@ export default function LandingPage() {
|
||||
]}
|
||||
brandName="ResumeAI"
|
||||
button={{
|
||||
text: "Get Started", href: "/auth"}}
|
||||
text: "Get Started", href: "/dashboard"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -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"],
|
||||
|
||||
Reference in New Issue
Block a user