From 06b9155e191f68d76f2f17e51122ff02f29d2490 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Mar 2026 02:45:22 +0000 Subject: [PATCH 1/2] Update src/app/about/page.tsx --- src/app/about/page.tsx | 110 ++++++++++++++++------------------------- 1 file changed, 43 insertions(+), 67 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 939af06..cd09393 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -8,6 +8,46 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin import SplitAbout from '@/components/sections/about/SplitAbout'; import { Lightbulb, ShieldCheck, Leaf } from "lucide-react"; +const commonNavItems = [ + { name: "Home", href: "/" }, + { name: "Products", href: "/products" }, + { name: "Features", href: "/#features" }, + { name: "About Us", href: "/about" }, + { name: "FAQs", href: "/faqs" }, + { name: "Contact", href: "/contact" } +]; + +const commonNavbarButton = { + text: "Get Your Case", href: "/products" +}; + +const commonFooterColumns = [ + { + title: "Shop", items: [ + { label: "iPhone Cases", href: "/products#iphone" }, + { label: "Samsung Cases", href: "/products#samsung" }, + { label: "Pixel Cases", href: "/products#pixel" }, + { label: "Accessories", href: "/products#accessories" } + ] + }, + { + title: "Company", items: [ + { label: "About Us", href: "/about" }, + { label: "Features", href: "/#features" }, + { label: "Testimonials", href: "/#testimonials" }, + { label: "FAQs", href: "/faqs" } + ] + }, + { + title: "Support", items: [ + { label: "Contact Us", href: "/contact" }, + { label: "Shipping & Returns", href: "/shipping" }, + { label: "Warranty", href: "/warranty" }, + { label: "Privacy Policy", href: "/privacy" } + ] + } +]; + export default function LandingPage() { return ( @@ -100,50 +119,7 @@ export default function LandingPage() { From 8d8e0fa0cd7f339ff5f699314c5fdbd29de26997 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 26 Mar 2026 02:45:22 +0000 Subject: [PATCH 2/2] Add src/app/products/page.tsx --- src/app/products/page.tsx | 115 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 115 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..2852f43 --- /dev/null +++ b/src/app/products/page.tsx @@ -0,0 +1,115 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; + +const commonNavItems = [ + { name: "Home", href: "/" }, + { name: "Products", href: "/products" }, + { name: "Features", href: "/#features" }, + { name: "About Us", href: "/about" }, + { name: "FAQs", href: "/faqs" }, + { name: "Contact", href: "/contact" } +]; + +const commonNavbarButton = { + text: "Get Your Case", href: "/products" +}; + +const commonFooterColumns = [ + { + title: "Shop", items: [ + { label: "iPhone Cases", href: "/products#iphone" }, + { label: "Samsung Cases", href: "/products#samsung" }, + { label: "Pixel Cases", href: "/products#pixel" }, + { label: "Accessories", href: "/products#accessories" } + ] + }, + { + title: "Company", items: [ + { label: "About Us", href: "/about" }, + { label: "Features", href: "/#features" }, + { label: "Testimonials", href: "/#testimonials" }, + { label: "FAQs", href: "/faqs" } + ] + }, + { + title: "Support", items: [ + { label: "Contact Us", href: "/contact" }, + { label: "Shipping & Returns", href: "/shipping" }, + { label: "Warranty", href: "/warranty" }, + { label: "Privacy Policy", href: "/privacy" } + ] + } +]; + +export default function ProductsPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +}