From 2cfadc8d84f4fee6c45399437641e658ebf349d7 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 22 May 2026 04:53:19 +0000 Subject: [PATCH] Add src/app/shipping/page.tsx --- src/app/shipping/page.tsx | 82 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 src/app/shipping/page.tsx diff --git a/src/app/shipping/page.tsx b/src/app/shipping/page.tsx new file mode 100644 index 0000000..f067ccb --- /dev/null +++ b/src/app/shipping/page.tsx @@ -0,0 +1,82 @@ +"use client" + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import { Truck, MapPin, Package } from 'lucide-react'; + +export default function ShippingPage() { + return ( + + + + +
+
+

Shipping Policy

+
+
+

Nationwide Delivery

+

We offer reliable shipping across the USA. Orders are processed within 24-48 hours and shipped via our premium logistics partners to ensure your products arrive in pristine condition.

+
+
+

Handling & Packaging

+

Every bottle is carefully wrapped in sustainable, protective materials to ensure it reaches you exactly as intended.

+
+
+

Tracking Your Order

+

Once your order ships, you will receive a tracking link via email so you can follow your UMBRA package on its journey to your door.

+
+
+
+
+ +
+ +
+ + +
+
+ ); +} \ No newline at end of file