From b3770ec7ee21bfb9f47283354ea89218aeebc696 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 09:55:11 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 64 +++++++++--------------------------------- 1 file changed, 13 insertions(+), 51 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 865e275..37d61f8 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -7,7 +7,7 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import TextAbout from '@/components/sections/about/TextAbout'; -export default function LandingPage() { +export default function AboutPage() { return ( @@ -65,6 +51,10 @@ export default function LandingPage() { useInvertedBackground={false} title="Values" description="Quality over everything." + features={[ + { id: "1", title: "Quality", description: "Handpicked blends." }, + { id: "2", title: "Expertise", description: "Knowledgeable support." } + ]} /> @@ -72,36 +62,8 @@ export default function LandingPage() { -- 2.49.1 From bf83fe283304e880207fd6b689e1507c0ecb5477 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 09:55:11 +0000 Subject: [PATCH 2/4] Update src/app/faq/page.tsx --- src/app/faq/page.tsx | 79 ++++++++------------------------------------ 1 file changed, 13 insertions(+), 66 deletions(-) diff --git a/src/app/faq/page.tsx b/src/app/faq/page.tsx index 41629a7..ec7bc83 100644 --- a/src/app/faq/page.tsx +++ b/src/app/faq/page.tsx @@ -7,7 +7,7 @@ import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import LegalSection from '@/components/legal/LegalSection'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -export default function LandingPage() { +export default function FaqPage() { return ( @@ -55,21 +41,9 @@ export default function LandingPage() { textboxLayout="default" useInvertedBackground={false} faqs={[ - { - id: "f1", - title: "Do I need to be 21+?", - content: "Yes. This site is strictly for individuals 21 years of age or older in compliance with federal law. Age verification is required upon landing.", - }, - { - id: "f2", - title: "Do you ship to my state?", - content: "We ship throughout the USA in accordance with state laws. Some states have specific restrictions.", - }, - { - id: "f3", - title: "Return Policy", - content: "Due to FDA health regulations, we cannot accept returns of opened tobacco products.", - }, + { id: "f1", title: "Do I need to be 21+?", content: "Yes. This site is strictly for individuals 21 years of age or older in compliance with federal law. Age verification is required upon landing." }, + { id: "f2", title: "Do you ship to my state?", content: "We ship throughout the USA in accordance with state laws. Some states have specific restrictions." }, + { id: "f3", title: "Return Policy", content: "Due to FDA health regulations, we cannot accept returns of opened tobacco products." } ]} title="Legal Requirements & FAQ" description="Important information about shipping, age verification, and our compliance standards." @@ -81,6 +55,7 @@ export default function LandingPage() { @@ -88,36 +63,8 @@ export default function LandingPage() { -- 2.49.1 From 0cf9dd04663eda360418609643397fc7cf31b918 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 09:55:11 +0000 Subject: [PATCH 3/4] Update src/app/page.tsx --- src/app/page.tsx | 150 +++++++---------------------------------------- 1 file changed, 21 insertions(+), 129 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 75abb2a..66429c7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -27,75 +27,30 @@ export default function LandingPage() {
@@ -105,21 +60,8 @@ export default function LandingPage() { useInvertedBackground={false} title="Commitment to Excellence" description="We source only the finest globally-renowned brands. Our selection process ensures that every tin, bowl, and hookah piece meets the highest standards for performance and longevity." - metrics={[ - { - value: "100+", - title: "Premium Blends", - }, - { - value: "24h", - title: "Shipping", - }, - { - value: "21+", - title: "Verified Only", - }, - ]} - imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BZLMS2k6KWAjpCJkV7Z2gvhymb/professional-team-member-handling-premiu-1774691658020-4d89eff8.png?_wi=1" + metrics={[{ value: "100+", title: "Premium Blends" }, { value: "24h", title: "Shipping" }, { value: "21+", title: "Verified Only" }]} + imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BZLMS2k6KWAjpCJkV7Z2gvhymb/professional-team-member-handling-premiu-1774691658020-4d89eff8.png" mediaAnimation="slide-up" metricsAnimation="blur-reveal" /> @@ -129,23 +71,12 @@ export default function LandingPage() { @@ -156,18 +87,7 @@ export default function LandingPage() { sideTitle="Questions?" sideDescription="Reach out to us anytime for support." faqsAnimation="slide-up" - faqs={[ - { - id: "q1", - title: "Shipping times?", - content: "We process orders within 24 hours.", - }, - { - id: "q2", - title: "Bulk orders?", - content: "Contact us for wholesale inquiries.", - }, - ]} + faqs={[{ id: "q1", title: "Shipping times?", content: "We process orders within 24 hours." }, { id: "q2", title: "Bulk orders?", content: "Contact us for wholesale inquiries." }]} /> @@ -175,36 +95,8 @@ export default function LandingPage() { -- 2.49.1 From 81d332a829f2ae0123367970faf0cf9c7ffa1d54 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 28 Mar 2026 09:55:12 +0000 Subject: [PATCH 4/4] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 96 ++++++++----------------------------------- 1 file changed, 16 insertions(+), 80 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index f8268c2..304af7a 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -7,7 +7,7 @@ import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloating import ProductCardFour from '@/components/sections/product/ProductCardFour'; import ProductCardTwo from '@/components/sections/product/ProductCardTwo'; -export default function LandingPage() { +export default function ShopPage() { return (
@@ -99,6 +62,7 @@ export default function LandingPage() { useInvertedBackground={false} title="Top Picks" description="Staff recommendations." + products={[]} /> @@ -106,36 +70,8 @@ export default function LandingPage() { -- 2.49.1