diff --git a/src/app/apply/page.tsx b/src/app/apply/page.tsx index 685163a..091abee 100644 --- a/src/app/apply/page.tsx +++ b/src/app/apply/page.tsx @@ -2,136 +2,70 @@ 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"; -import { Briefcase, Sparkles } from "lucide-react"; + +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: "#" }, + ], + }, +]; 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 ( -
- -
- -
- +
+
+

Job Application Form

+

Complete your profile to apply for this position

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