diff --git a/src/app/search/page.tsx b/src/app/search/page.tsx index 9d80e98..2b08dc4 100644 --- a/src/app/search/page.tsx +++ b/src/app/search/page.tsx @@ -2,113 +2,126 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import FeatureCardEight from "@/components/sections/feature/FeatureCardEight"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; import FooterBase from "@/components/sections/footer/FooterBase"; -import { useState } from "react"; +import { Sparkles, Mail } from "lucide-react"; const navItems = [ - { name: "Dashboard", id: "/" }, - { name: "Browse Jobs", id: "/search" }, - { name: "My Applications", id: "/applications" }, - { name: "Settings", id: "#settings" }, + { 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: "Browse Jobs", href: "/search" }, - { label: "Companies", href: "#" }, + { 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: "#" }, + { label: "About Jobee", href: "#about" }, + { label: "Careers", href: "#" }, + { label: "Contact Us", href: "#contact" }, { label: "Blog", href: "#" }, - { label: "Contact", href: "#" }, + ], + }, + { + title: "Resources", items: [ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + { label: "FAQ", href: "#" }, + { label: "Support", href: "#" }, ], }, ]; export default function SearchPage() { - const [searchQuery, setSearchQuery] = useState(""); - - const handleSearch = (callback: () => void) => { - callback(); - }; - return ( -