diff --git a/src/app/dashboard/profile/create/page.tsx b/src/app/dashboard/profile/create/page.tsx new file mode 100644 index 0000000..469b930 --- /dev/null +++ b/src/app/dashboard/profile/create/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 ProfileCreatePage() { + 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 ( + + + + +
+

Create Your Profile

+

Start building your professional profile to showcase your skills and experience to potential employers.

+ {/* Placeholder for Profile Creation Form */} +
+

Profile creation form will go here.

+

Fields might include: Personal Info, Education, Experience, Skills, etc.

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