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() {