diff --git a/src/app/dashboard/resume/page.tsx b/src/app/dashboard/resume/page.tsx new file mode 100644 index 0000000..ee19d41 --- /dev/null +++ b/src/app/dashboard/resume/page.tsx @@ -0,0 +1,68 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; + +export default function ResumePage() { + const navItems = [ + { name: "Home", id: "#home" }, + { name: "Features", id: "#features" }, + { name: "Jobs", id: "#jobs" }, + { name: "Companies", id: "#companies" }, + { name: "Pricing", id: "#pricing" }, + { name: "Reviews", id: "#testimonials" }, + { name: "FAQ", id: "#faq" }, + { name: "Dashboard", id: "/dashboard" } + ]; + + return ( + + + + +
+

Resume Builder & Upload

+

Upload your existing resume or use our AI-powered builder to create a new one.

+ {/* Placeholder for Resume features */} +
+

Resume upload and builder tools will be available here.

+ + +
+
+ + +
+
+ ); +} \ No newline at end of file