"use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; import ProductCardOne from '@/components/sections/product/ProductCardOne'; import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import Link from 'next/link'; import { Clock } from 'lucide-react'; export default function BrowseItemsPage() { const navItems = [ { name: "Home", id: "/" }, { name: "Browse Items", id: "/browse" }, { name: "Report Item", id: "/report" }, { name: "How It Works", id: "/how-it-works" }, { name: "Contact", id: "/contact" }, ]; const footerColumns = [ { title: "Platform", items: [ { label: "Browse Items", href: "/browse" }, { label: "Report Item", href: "/report" }, { label: "How It Works", href: "#how-it-works" }, { label: "Dashboard", href: "/dashboard" }, ], }, { title: "Community", items: [ { label: "Success Stories", href: "#testimonials" }, { label: "Guidelines", href: "#" }, { label: "Help Center", href: "#" }, { label: "Contact Support", href: "#" }, ], }, { title: "Company", items: [ { label: "About Us", href: "#" }, { label: "Blog", href: "#" }, { label: "Careers", href: "#" }, { label: "Press", href: "#" }, ], }, { title: "Legal", items: [ { label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }, { label: "Cookie Policy", href: "#" }, { label: "Contact", href: "#" }, ], }, ]; const allItems = [ { id: "1", name: "Blue Backpack", price: "Lost - $150 value", imageSrc: "http://img.b2bpic.net/free-photo/woman-leaning-her-car-beach_23-2148218377.jpg", imageAlt: "Blue backpack"}, { id: "2", name: "Leather Wallet", price: "Found - Electronics Category", imageSrc: "http://img.b2bpic.net/free-photo/man-saving-money-energy-crisis_23-2150061852.jpg", imageAlt: "Brown leather wallet"}, { id: "3", name: "iPhone 14", price: "Lost - Downtown Area", imageSrc: "http://img.b2bpic.net/free-photo/close-up-adult-man-browsing-his-mobile-phone_23-2148531034.jpg", imageAlt: "iPhone 14 device"}, { id: "4", name: "Vintage Watch", price: "Found - Jewelry Category", imageSrc: "http://img.b2bpic.net/free-photo/woman-leaning-her-car-beach_23-2148218377.jpg", imageAlt: "Vintage watch"}, { id: "5", name: "Prescription Glasses", price: "Lost - Last seen at Cafe", imageSrc: "http://img.b2bpic.net/free-photo/close-up-adult-man-browsing-his-mobile-phone_23-2148531034.jpg", imageAlt: "Prescription glasses"}, { id: "6", name: "Gold Ring", price: "Found - Wedding Band", imageSrc: "http://img.b2bpic.net/free-photo/man-saving-money-energy-crisis_23-2150061852.jpg", imageAlt: "Gold ring"}, ]; return (
); }