diff --git a/src/app/page.tsx b/src/app/page.tsx index 27c8ff7..fb8a049 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,142 +2,213 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; -import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel'; -import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; -import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; -import ContactCenter from '@/components/sections/contact/ContactCenter'; +import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel"; +import FeatureCardEight from "@/components/sections/feature/FeatureCardEight"; +import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; import FooterBase from "@/components/sections/footer/FooterBase"; -import { Users, Star } from "lucide-react"; +import { Briefcase, Sparkles, Mail, Quote } from "lucide-react"; const navItems = [ - { name: "Home", id: "/" }, - { name: "Features", id: "#features" }, - { name: "Testimonials", id: "#testimonials" }, - { name: "Contact", id: "#contact" }, + { 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: "Features", href: "#features" }, - { label: "Pricing", href: "#pricing" }, - { label: "Security", href: "#security" }, + { 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", href: "#about" }, - { label: "Blog", href: "#blog" }, - { label: "Careers", href: "#careers" }, + { 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: "#" }, ], }, ]; -export default function Home() { +export default function HomePage() { return (
); -} +} \ No newline at end of file