Merge version_2 into main #5

Merged
bender merged 2 commits from version_2 into main 2026-03-29 16:28:29 +00:00
2 changed files with 29 additions and 4 deletions

View File

@@ -0,0 +1,25 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
export default function DashboardPage() {
return (
<ThemeProvider>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{ name: "Dashboard", id: "/dashboard" },
]}
brandName="ResumeAI"
/>
</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>
);
}

View File

@@ -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"],