Add src/app/dashboard/profile/create/page.tsx

This commit is contained in:
2026-06-07 05:58:10 +00:00
parent f36f875292
commit 10f2646e8a

View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="medium"
sizing="mediumLargeSizeLargeTitles"
background="fluid"
cardStyle="gradient-bordered"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={navItems}
brandName="JobGeorgia"
button={{ text: "Get Started", href: "#pricing" }}
/>
</div>
<div className="min-h-screen pt-24 pb-16 flex flex-col items-center justify-center text-center px-4">
<h1 className="text-5xl font-bold mb-4">Create Your Profile</h1>
<p className="text-lg mb-8 max-w-2xl text-gray-400">Start building your professional profile to showcase your skills and experience to potential employers.</p>
{/* Placeholder for Profile Creation Form */}
<div className="w-full max-w-2xl p-8 border rounded-lg shadow-lg bg-card text-foreground">
<p className="text-gray-500">Profile creation form will go here.</p>
<p className="text-gray-500 mt-2">Fields might include: Personal Info, Education, Experience, Skills, etc.</p>
<button className="mt-6 px-6 py-3 bg-primary-cta text-primary-cta-foreground rounded-md hover:opacity-90 transition-opacity">Save Profile</button>
</div>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="JobGeorgia"
columns={[
{ title: "Platform", items: [{ label: "Job Seekers", href: "#features" }, { label: "Employers", href: "#features" }, { label: "Recruiters", href: "#features" }, { label: "AI Features", href: "#features" }] },
{ title: "Resources", items: [{ label: "Featured Jobs", href: "#jobs" }, { label: "Featured Companies", href: "#companies" }, { label: "Pricing Plans", href: "#pricing" }, { label: "FAQ", href: "#faq" }] },
{ title: "Company", items: [{ label: "About Us", href: "#" }, { label: "Contact Us", href: "#" }, { label: "Blog", href: "#" }, { label: "Careers", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Cookie Policy", href: "#" }] },
]}
copyrightText="© 2024 JobGeorgia. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}