From c2cd2337006f7abc0eec09987b76a55e131cac3e Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 15:28:56 +0000 Subject: [PATCH] Add src/app/lost-and-found/page.tsx --- src/app/lost-and-found/page.tsx | 201 ++++++++++++++++++++++++++++++++ 1 file changed, 201 insertions(+) create mode 100644 src/app/lost-and-found/page.tsx diff --git a/src/app/lost-and-found/page.tsx b/src/app/lost-and-found/page.tsx new file mode 100644 index 0000000..70266c6 --- /dev/null +++ b/src/app/lost-and-found/page.tsx @@ -0,0 +1,201 @@ +"use client"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroLogo from '@/components/sections/hero/HeroLogo'; +import FeatureCardTen from '@/components/sections/feature/FeatureCardTen'; +import BlogCardThree from '@/components/sections/blog/BlogCardThree'; +import FaqBase from '@/components/sections/faq/FaqBase'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import { Search, Filter, Calendar, Tag } from 'lucide-react'; +import { useState } from 'react'; + +export default function LostAndFoundPage() { + const [filterCategory, setFilterCategory] = useState('all'); + const [filterDate, setFilterDate] = useState('all'); + const [itemType, setItemType] = useState('lost'); + + const categories = ['Electronics', 'Documents', 'Accessories', 'Clothing', 'Other']; + const dateRanges = ['Last 7 days', 'Last 30 days', 'Last 90 days', 'All time']; + + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}