From 148b7784eeedf0554521a9f53b4c896c955aa235 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 13:40:24 +0000 Subject: [PATCH] Add src/app/products/page.tsx --- src/app/products/page.tsx | 135 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 135 insertions(+) create mode 100644 src/app/products/page.tsx diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx new file mode 100644 index 0000000..0f45106 --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,135 @@ +"use client"; + +import Link from "next/link"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import ProductCardFour from "@/components/sections/product/ProductCardFour"; +import ContactText from "@/components/sections/contact/ContactText"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Sparkles } from "lucide-react"; + +export default function ProductsPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Products", id: "/products" }, + { name: "Reviews", id: "/reviews" }, + { name: "Guides", id: "/guides" }, + { name: "Blog", id: "/blog" }, + { name: "Contact", id: "/contact" }, + ]; + + const footerColumns = [ + { + title: "Discover", items: [ + { label: "Product Reviews", href: "/reviews" }, + { label: "Beauty Guides", href: "/guides" }, + { label: "Blog Articles", href: "/blog" }, + { label: "Latest Trends", href: "/blog" }, + ], + }, + { + title: "Categories", items: [ + { label: "Skincare", href: "#" }, + { label: "Makeup", href: "#" }, + { label: "Lip Care", href: "#" }, + { label: "Budget Finds", href: "#" }, + ], + }, + { + title: "Company", items: [ + { label: "About Us", href: "#" }, + { label: "Contact", href: "/contact" }, + { label: "Advertise", href: "#" }, + { label: "Affiliate Program", href: "#" }, + ], + }, + { + title: "Legal", items: [ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + { label: "Disclosure", href: "#" }, + { label: "Cookie Policy", href: "#" }, + ], + }, + ]; + + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +}