From b613da58625e99de4a7975dd17e587ef0462ab57 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 22 May 2026 04:53:18 +0000 Subject: [PATCH 1/2] Update src/app/page.tsx --- src/app/page.tsx | 277 ++++++----------------------------------------- 1 file changed, 32 insertions(+), 245 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index c1176c7..b87637c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -35,7 +35,7 @@ export default function LandingPage() { brandName="UMBRA" navItems={[ { name: "Collection", id: "products" }, - { name: "Craft", id: "ingredients" }, + { name: "Shipping", id: "/shipping" }, { name: "Journal", id: "blog" }, { name: "Contact", id: "contact" } ]} @@ -57,46 +57,19 @@ export default function LandingPage() { ]} buttonAnimation="slide-up" carouselItems={[ - { - id: "1", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare-luxury/hero-1.webp", - imageAlt: "UMBRA Solum Eau de Parfum held against earth tones" - }, - { - id: "2", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare-luxury/hero-2.webp", - imageAlt: "UMBRA Solum white bottle with draped fabric" - }, - { - id: "3", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare-luxury/hero-3.webp", - imageAlt: "UMBRA Solum with botanical wood and greenery" - }, - { - id: "4", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare-luxury/hero-4.webp", - imageAlt: "UMBRA Solum on stone pedestal with natural light" - }, - { - id: "5", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare-luxury/hero-5.webp", - imageAlt: "Model with bronzing face drops" - }, - { - id: "6", - imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare-luxury/hero-6.webp", - imageAlt: "UMBRA Solum flat lay with golden serums" - } + { id: "1", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare-luxury/hero-1.webp" }, + { id: "2", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare-luxury/hero-2.webp" }, + { id: "3", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare-luxury/hero-3.webp" }, + { id: "4", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare-luxury/hero-4.webp" }, + { id: "5", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare-luxury/hero-5.webp" }, + { id: "6", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/skincare-luxury/hero-6.webp" } ]} - autoPlay={true} - autoPlayInterval={4000} />
@@ -390,38 +203,12 @@ export default function LandingPage() { ); -} +} \ No newline at end of file -- 2.49.1 From 2cfadc8d84f4fee6c45399437641e658ebf349d7 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 22 May 2026 04:53:19 +0000 Subject: [PATCH 2/2] 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 -- 2.49.1