From e8f8be783be3db34a63e61e34e0d87dc971e46cd Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 12:18:24 +0000 Subject: [PATCH] Add src/app/shipping-policy/page.tsx --- src/app/shipping-policy/page.tsx | 161 +++++++++++++++++++++++++++++++ 1 file changed, 161 insertions(+) create mode 100644 src/app/shipping-policy/page.tsx diff --git a/src/app/shipping-policy/page.tsx b/src/app/shipping-policy/page.tsx new file mode 100644 index 0000000..b0a8142 --- /dev/null +++ b/src/app/shipping-policy/page.tsx @@ -0,0 +1,161 @@ +"use client"; + +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import LegalSection from "@/components/legal/LegalSection"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + +export default function ShippingPolicyPage() { + const navItems = [ + { name: "Home", id: "/" }, + { name: "Shop", id: "/shop" }, + { name: "Collections", id: "#collections" }, + { name: "Contact", id: "/contact" }, + ]; + + const footerColumns = [ + { + items: [ + { label: "About Us", href: "#about" }, + { label: "Contact", href: "/contact" }, + { label: "Shipping Policy", href: "/shipping-policy" }, + { label: "Return Policy", href: "/return-policy" }, + ], + }, + { + items: [ + { label: "FAQ", href: "#faq" }, + { label: "Order Tracking", href: "#tracking" }, + { label: "Size Guide", href: "#sizes" }, + { label: "Care Tips", href: "#care" }, + ], + }, + { + items: [ + { label: "Instagram", href: "https://instagram.com" }, + { label: "Facebook", href: "https://facebook.com" }, + { label: "TikTok", href: "https://tiktok.com" }, + { label: "Privacy Policy", href: "#privacy" }, + ], + }, + ]; + + return ( + + + +
+ +
+ + +
+ ); +} \ No newline at end of file