diff --git a/src/app/match-center/page.tsx b/src/app/match-center/page.tsx new file mode 100644 index 0000000..15caa79 --- /dev/null +++ b/src/app/match-center/page.tsx @@ -0,0 +1,138 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { CalendarDays, Trophy, ListChecks } from "lucide-react"; + +const commonNavItems = [ + { name: "Services", id: "services" }, + { name: "About", id: "about" }, + { name: "Match Center", href: "/match-center" }, + { name: "Team", id: "team" }, + { name: "Testimonials", id: "testimonials" }, + { name: "Contact", id: "contact" }, +]; + +const commonFooterColumns = [ + { + title: "Services", items: [ + { label: "Landscape Design", href: "#services" }, + { label: "Hardscape & Softscape", href: "#services" }, + { label: "Lawn & Garden Care", href: "#services" }, + { label: "Smart Irrigation", href: "#services" }, + ], + }, + { + title: "Company", items: [ + { label: "About", href: "#about" }, + { label: "Match Center", href: "/match-center" }, + { label: "Team", href: "#team" }, + { label: "Testimonials", href: "#testimonials" }, + { label: "FAQ", href: "#faq" }, + ], + }, + { + title: "Contact", items: [ + { label: "(555) 123-4567", href: "tel:5551234567" }, + { label: "hello@greenscape.com", href: "mailto:hello@greenscape.com" }, + { label: "Los Angeles, CA" }, + ], + }, +]; + +export default function MatchCenterPage() { + return ( + + + + +
+
+

Match Center

+ +
+ +
+ +
+ +
+ +
+ +
+
+
+ + +
+
+ ); +}