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