Switch to version 1: modified src/app/apply/page.tsx

This commit is contained in:
2026-03-08 22:23:25 +00:00
parent 0514de31b6
commit 72f424682a

View File

@@ -2,70 +2,136 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
import FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
import FooterBase from "@/components/sections/footer/FooterBase";
const navItems = [
{ name: "Dashboard", id: "/" },
{ name: "Browse Jobs", id: "/search" },
{ name: "My Applications", id: "/applications" },
{ name: "Settings", id: "#settings" },
];
const footerColumns = [
{
title: "Product", items: [
{ label: "Browse Jobs", href: "/search" },
{ label: "Companies", href: "#" },
{ label: "For Employers", href: "#" },
],
},
{
title: "Company", items: [
{ label: "About", href: "#" },
{ label: "Blog", href: "#" },
{ label: "Contact", href: "#" },
],
},
];
import { Briefcase, Sparkles } from "lucide-react";
export default function ApplyPage() {
const navItems = [
{ name: "Search Jobs", id: "search" },
{ name: "Post a Job", id: "post-job" },
{ name: "Admin", id: "admin-login" },
{ name: "Browse", id: "browse" },
{ name: "Contact", id: "contact" },
];
const footerColumns = [
{
title: "Product", items: [
{ label: "Search Jobs", href: "/search" },
{ label: "Post a Job", href: "/post-job" },
{ label: "Browse by Province", href: "#provinces" },
{ label: "For Employers", href: "#" },
],
},
{
title: "Company", items: [
{ label: "About Jobee", href: "#about" },
{ label: "Careers", href: "#" },
{ label: "Contact Us", href: "#contact" },
{ label: "Blog", href: "#" },
],
},
{
title: "Resources", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "FAQ", href: "#" },
{ label: "Support", href: "#" },
],
},
];
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="reveal-blur"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
contentWidth="smallMedium"
sizing="mediumLargeSizeLargeTitles"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
cardStyle="gradient-radial"
primaryButtonStyle="double-inset"
secondaryButtonStyle="glass"
headingFontWeight="normal"
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
brandName="Jobee"
navItems={navItems}
button={{
text: "Sign In", onClick: () => console.log("sign-in"),
}}
button={{ text: "Post a Job", href: "/post-job" }}
brandName="Jobee"
/>
</div>
<div id="apply" data-section="apply" className="py-20">
<div className="container mx-auto px-4 text-center">
<h1 className="text-4xl font-bold mb-4">Job Application Form</h1>
<p className="text-lg text-gray-600">Complete your profile to apply for this position</p>
</div>
<div id="features" data-section="features">
<FeatureCardEight
features={[
{
id: 1,
title: "Complete Your Profile", description:
"Upload your resume, add a professional photo, and complete your profile information. Make a great first impression with employers.", imageSrc:
"http://img.b2bpic.net/free-photo/personal-information-form-identity-concept_53876-137622.jpg?_wi=5", imageAlt: "Profile completion step"},
{
id: 2,
title: "Submit Your Application", description:
"Choose your desired position and submit your application with a personalized cover letter. It takes just minutes.", imageSrc:
"http://img.b2bpic.net/free-vector/professional-recruitment-plan-diversity-general-infographic-template_23-2148947635.jpg?_wi=5", imageAlt: "Application submission process"},
{
id: 3,
title: "Track and Communicate", description:
"Monitor your application status in real-time and communicate directly with employers through our messaging system.", imageSrc:
"http://img.b2bpic.net/free-photo/homepage-concept-with-search-bar_23-2150040187.jpg?_wi=6", imageAlt: "Application tracking dashboard"},
]}
title="Apply to Jobs in Three Steps"
description="Streamlined application process designed to help you land your dream job in the Netherlands."
tag="Easy Application"
tagIcon={Sparkles}
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
buttons={[{ text: "Find Jobs Now", href: "/search" }]}
buttonAnimation="slide-up"
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardTwo
testimonials={[
{
id: "1", name: "Sarah van der Berg", role: "Software Developer", testimonial:
"I found my perfect job within 2 weeks using Jobee. The search filters made it easy to find remote opportunities in Amsterdam that matched my skill set.", imageSrc:
"http://img.b2bpic.net/free-photo/front-view-smiley-man-posing_23-2150171293.jpg?_wi=2", imageAlt: "Sarah van der Berg"},
{
id: "2", name: "Emma Dijkstra", role: "Marketing Specialist", testimonial:
"The application process on Jobee is so smooth. I applied for 5 positions and received 3 interview invitations within a week. Highly recommended!", imageSrc:
"http://img.b2bpic.net/free-photo/smiling-face-gorgeous-latin-american-woman_1262-5766.jpg?_wi=2", imageAlt: "Emma Dijkstra"},
{
id: "3", name: "Michael Houtstra", role: "Finance Director", testimonial:
"The platform's transparency about job requirements and company culture helped me find a role that was truly the right fit. Great experience!", imageSrc:
"http://img.b2bpic.net/free-photo/smiling-senior-businessman-pointing-with-finger_1262-3108.jpg?_wi=2", imageAlt: "Michael Houtstra"},
{
id: "4", name: "Lisa Bertrand", role: "UX Designer", testimonial:
"Jobee's application tracking feature is excellent. I always knew exactly where I stood with each employer. Best job search experience yet!", imageSrc:
"http://img.b2bpic.net/free-photo/studio-portrait-elegant-black-american-male-dressed-suit-grey-vignette-background_613910-9543.jpg?_wi=2", imageAlt: "Lisa Bertrand"},
]}
title="Success Stories from Our Job Seekers"
description="Real experiences from candidates who found their dream jobs through Jobee."
tag="User Testimonials"
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={true}
animationType="slide-up"
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
logoText="Jobee"
copyrightText="© 2025 Jobee"
columns={footerColumns}
logoText="Jobee"
copyrightText="© 2025 Jobee | Dutch Job Listing Platform"
/>
</div>
</ThemeProvider>
);
}
}