Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a128bca379 | |||
| 85cf52ac70 | |||
| a1f246b886 | |||
| 8a2d7af092 | |||
| 1e89787656 | |||
| 83b0b40437 |
38
src/app/launch-plan/page.tsx
Normal file
38
src/app/launch-plan/page.tsx
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import LegalSection from '@/components/legal/LegalSection';
|
||||||
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||||
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
|
|
||||||
|
export default function LaunchPlanPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarStyleCentered
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Launch Plan", id: "#content" }
|
||||||
|
]}
|
||||||
|
brandName="CreamyDream x Cherry"
|
||||||
|
/>
|
||||||
|
<div id="content" className="pt-32 pb-20">
|
||||||
|
<LegalSection
|
||||||
|
layout="page"
|
||||||
|
title="Launch Plan"
|
||||||
|
sections={[
|
||||||
|
{ heading: "Phase 1: Pre-Launch", content: { type: "numbered-list", items: ["Social media teaser campaign", "Influencer seeding", "Email waitlist signup setup"] } },
|
||||||
|
{ heading: "Phase 2: Launch Day", content: { type: "numbered-list", items: ["Website goes live", "Influencer content drops", "Email blast to waitlist"] } },
|
||||||
|
{ heading: "Phase 3: Post-Launch", content: { type: "numbered-list", items: ["Customer review collection", "Community highlight series", "Launch product refinement based on feedback"] } }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<FooterLogoEmphasis
|
||||||
|
logoText="CreamyDream x Cherry"
|
||||||
|
columns={[]}
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
210
src/app/page.tsx
210
src/app/page.tsx
@@ -21,32 +21,24 @@ export default function LandingPage() {
|
|||||||
borderRadius="pill"
|
borderRadius="pill"
|
||||||
contentWidth="mediumLarge"
|
contentWidth="mediumLarge"
|
||||||
sizing="mediumLarge"
|
sizing="mediumLarge"
|
||||||
background="circleGradient"
|
background="noise"
|
||||||
cardStyle="soft-shadow"
|
cardStyle="glass-elevated"
|
||||||
primaryButtonStyle="primary-glow"
|
primaryButtonStyle="gradient"
|
||||||
secondaryButtonStyle="glass"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="normal"
|
headingFontWeight="semibold"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "#hero"},
|
||||||
id: "#hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Products",
|
name: "Products", id: "#products"},
|
||||||
id: "#products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Bundles",
|
name: "Bundles", id: "#bundles"},
|
||||||
id: "#bundles",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Reviews",
|
name: "Reviews", id: "#reviews"},
|
||||||
id: "#reviews",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="CreamyDream x Cherry"
|
brandName="CreamyDream x Cherry"
|
||||||
/>
|
/>
|
||||||
@@ -55,17 +47,14 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardScroll
|
<HeroBillboardScroll
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "sparkles-gradient"}}
|
||||||
}}
|
|
||||||
title="Moisture-Locked Perfection for Your Crown"
|
title="Moisture-Locked Perfection for Your Crown"
|
||||||
description="Discover the CreamyDream x Cherry collaboration: premium, moisture-focused care designed to empower your natural curls."
|
description="Discover the CreamyDream x Cherry collaboration: premium, moisture-focused care designed to empower your natural curls."
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/beautiful-strong-confident-black-model-khaki-thin-coat-isolated-white_633478-1220.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/beautiful-strong-confident-black-model-khaki-thin-coat-isolated-white_633478-1220.jpg"
|
||||||
imageAlt="curly hair beauty close up"
|
imageAlt="curly hair beauty close up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Shop Now",
|
text: "Shop Now", href: "#products"},
|
||||||
href: "#products",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -75,9 +64,7 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
title="Empowered by Nature"
|
title="Empowered by Nature"
|
||||||
description={[
|
description={[
|
||||||
"CreamyDream and Cherry unite to bring you the best in moisture-focused hair care.",
|
"CreamyDream and Cherry unite to bring you the best in moisture-focused hair care.", "We believe every curl tells a story, and yours deserves to grow healthy, bouncy, and bold."]}
|
||||||
"We believe every curl tells a story, and yours deserves to grow healthy, bouncy, and bold.",
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -89,47 +76,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Sticky Leave-In", price: "$24.75", imageSrc: "http://img.b2bpic.net/free-photo/conditioner-bottle_187299-45898.jpg", imageAlt: "hair cream bottle mockup"},
|
||||||
name: "Sticky Leave-In",
|
|
||||||
price: "$24.75",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/conditioner-bottle_187299-45898.jpg",
|
|
||||||
imageAlt: "hair cream bottle mockup",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Chebe Wash-Set", price: "$63.80", imageSrc: "http://img.b2bpic.net/free-photo/coconut-other-products-top-view_23-2148337502.jpg", imageAlt: "shampoo wash set bottle"},
|
||||||
name: "Chebe Wash-Set",
|
|
||||||
price: "$63.80",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/coconut-other-products-top-view_23-2148337502.jpg",
|
|
||||||
imageAlt: "shampoo wash set bottle",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Fluffy Butter", price: "$20.85", imageSrc: "http://img.b2bpic.net/free-photo/skin-regeneration-product-still-life_23-2151232279.jpg", imageAlt: "hair butter jar mockup"},
|
||||||
name: "Fluffy Butter",
|
|
||||||
price: "$20.85",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/skin-regeneration-product-still-life_23-2151232279.jpg",
|
|
||||||
imageAlt: "hair butter jar mockup",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "Wet Curly Gel", price: "$21.95", imageSrc: "http://img.b2bpic.net/free-photo/skin-regeneration-product-still-life_23-2151232278.jpg", imageAlt: "hair cream bottle mockup"},
|
||||||
name: "Wet Curly Gel",
|
|
||||||
price: "$21.95",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/skin-regeneration-product-still-life_23-2151232278.jpg",
|
|
||||||
imageAlt: "hair cream bottle mockup",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Olie/Oil", price: "$25.25", imageSrc: "http://img.b2bpic.net/free-photo/close-up-skin-regeneration-products_23-2151242133.jpg", imageAlt: "hair butter jar mockup"},
|
||||||
name: "Olie/Oil",
|
|
||||||
price: "$25.25",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-skin-regeneration-products_23-2151242133.jpg",
|
|
||||||
imageAlt: "hair butter jar mockup",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "6",
|
id: "6", name: "Curly Leave-In", price: "$20.35", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-eucalyptus-with-beauty-products_23-2149440648.jpg", imageAlt: "shampoo wash set bottle"},
|
||||||
name: "Curly Leave-In",
|
|
||||||
price: "$20.35",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-eucalyptus-with-beauty-products_23-2149440648.jpg",
|
|
||||||
imageAlt: "shampoo wash set bottle",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Our Signature Collection"
|
title="Our Signature Collection"
|
||||||
description="Hand-picked, high-moisture essentials for every step of your hair care journey."
|
description="Hand-picked, high-moisture essentials for every step of your hair care journey."
|
||||||
@@ -143,36 +100,16 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
plans={[
|
plans={[
|
||||||
{
|
{
|
||||||
id: "bundle-1",
|
id: "bundle-1", tag: "Top Pick", price: "$75.35", period: "once", description: "The Ultimate 3-Pack Moisture Routine", button: {
|
||||||
tag: "Top Pick",
|
text: "Shop Bundle"},
|
||||||
price: "$75.35",
|
featuresTitle: "What's inside:", features: [
|
||||||
period: "once",
|
"Sticky Leave-In", "Olie/Oil", "Fluffy Butter"],
|
||||||
description: "The Ultimate 3-Pack Moisture Routine",
|
|
||||||
button: {
|
|
||||||
text: "Shop Bundle",
|
|
||||||
},
|
|
||||||
featuresTitle: "What's inside:",
|
|
||||||
features: [
|
|
||||||
"Sticky Leave-In",
|
|
||||||
"Olie/Oil",
|
|
||||||
"Fluffy Butter",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "bundle-2",
|
id: "bundle-2", tag: "Best Value", price: "$72.05", period: "once", description: "Full Wash-Set Treatment", button: {
|
||||||
tag: "Best Value",
|
text: "Shop Bundle"},
|
||||||
price: "$72.05",
|
featuresTitle: "What's inside:", features: [
|
||||||
period: "once",
|
"Shampoo", "Conditioner", "Deep Treatment"],
|
||||||
description: "Full Wash-Set Treatment",
|
|
||||||
button: {
|
|
||||||
text: "Shop Bundle",
|
|
||||||
},
|
|
||||||
featuresTitle: "What's inside:",
|
|
||||||
features: [
|
|
||||||
"Shampoo",
|
|
||||||
"Conditioner",
|
|
||||||
"Deep Treatment",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Better Together: Bundles"
|
title="Better Together: Bundles"
|
||||||
@@ -187,23 +124,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Deep Moisture",
|
title: "Deep Moisture", description: "Hydrate and define curls with ingredients that last all day.", imageSrc: "http://img.b2bpic.net/free-photo/foundation-dropper-bottle-with-reflection_23-2151968650.jpg", imageAlt: "hair cream bottle mockup"},
|
||||||
description: "Hydrate and define curls with ingredients that last all day.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/foundation-dropper-bottle-with-reflection_23-2151968650.jpg",
|
|
||||||
imageAlt: "hair cream bottle mockup",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Healthy Growth",
|
title: "Healthy Growth", description: "Supports follicle health for stronger, longer, and softer hair.", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-natural-ingredients-arrangement_23-2148899382.jpg", imageAlt: "shampoo wash set bottle"},
|
||||||
description: "Supports follicle health for stronger, longer, and softer hair.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-natural-ingredients-arrangement_23-2148899382.jpg",
|
|
||||||
imageAlt: "shampoo wash set bottle",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Confidence Boost",
|
title: "Confidence Boost", description: "Empowering you to wear your natural texture with sass.", imageSrc: "http://img.b2bpic.net/free-photo/skin-regeneration-product-still-life_23-2151232241.jpg", imageAlt: "hair butter jar mockup"},
|
||||||
description: "Empowering you to wear your natural texture with sass.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/skin-regeneration-product-still-life_23-2151232241.jpg",
|
|
||||||
imageAlt: "hair butter jar mockup",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Why You'll Love Us"
|
title="Why You'll Love Us"
|
||||||
description="We don't just sell hair products; we create a movement of confident, empowered natural beauty."
|
description="We don't just sell hair products; we create a movement of confident, empowered natural beauty."
|
||||||
@@ -217,40 +142,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Jamila B.", handle: "@curljam", testimonial: "My curls have never felt this soft. Truly the best leave-in ever!", imageSrc: "http://img.b2bpic.net/free-photo/mixed-race-black-blonde-model-with-curly-hair-wondered-model-turned-face-right_633478-789.jpg"},
|
||||||
name: "Jamila B.",
|
|
||||||
handle: "@curljam",
|
|
||||||
testimonial: "My curls have never felt this soft. Truly the best leave-in ever!",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/mixed-race-black-blonde-model-with-curly-hair-wondered-model-turned-face-right_633478-789.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Kelsey S.", handle: "@kelseysways", testimonial: "The Chebe Wash-Set is a total game changer for my coily hair growth.", imageSrc: "http://img.b2bpic.net/free-photo/lovely-girl-denim-jacket-ruffles-hair-white-background-portrait-african-curly-woman-green-tee-smiling-isolated-backdrop_197531-29011.jpg"},
|
||||||
name: "Kelsey S.",
|
|
||||||
handle: "@kelseysways",
|
|
||||||
testimonial: "The Chebe Wash-Set is a total game changer for my coily hair growth.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/lovely-girl-denim-jacket-ruffles-hair-white-background-portrait-african-curly-woman-green-tee-smiling-isolated-backdrop_197531-29011.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Maya L.", handle: "@maya_styles", testimonial: "The Fluffy Butter is the only thing that keeps my ends hydrated.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-wool-texture-details_23-2149503200.jpg"},
|
||||||
name: "Maya L.",
|
|
||||||
handle: "@maya_styles",
|
|
||||||
testimonial: "The Fluffy Butter is the only thing that keeps my ends hydrated.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-wool-texture-details_23-2149503200.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "Tasha R.", handle: "@tashareviews", testimonial: "Finally a brand that gets curly girl needs. Obsessed!", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-portrait-detail-woman-s-brown-hair_23-2151913372.jpg"},
|
||||||
name: "Tasha R.",
|
|
||||||
handle: "@tashareviews",
|
|
||||||
testimonial: "Finally a brand that gets curly girl needs. Obsessed!",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-portrait-detail-woman-s-brown-hair_23-2151913372.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Nia D.", handle: "@nia_curly", testimonial: "Obsessed with the smell and how defined my coils look now.", imageSrc: "http://img.b2bpic.net/free-photo/woman-touching-her-curls-sitting-bench_1139-587.jpg"},
|
||||||
name: "Nia D.",
|
|
||||||
handle: "@nia_curly",
|
|
||||||
testimonial: "Obsessed with the smell and how defined my coils look now.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-touching-her-curls-sitting-bench_1139-587.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Loved by the Curly Community"
|
title="Loved by the Curly Community"
|
||||||
description="See why our customers are making the switch to moisture-rich, natural hair care."
|
description="See why our customers are making the switch to moisture-rich, natural hair care."
|
||||||
@@ -263,20 +163,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "What is your shipping policy?", content: "We offer flat rate shipping and free shipping on orders over $80."},
|
||||||
title: "What is your shipping policy?",
|
|
||||||
content: "We offer flat rate shipping and free shipping on orders over $80.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "Can I return products?", content: "We accept returns on unopened items within 14 days."},
|
||||||
title: "Can I return products?",
|
|
||||||
content: "We accept returns on unopened items within 14 days.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "Are these for all hair types?", content: "Specifically formulated for curly, coily, and natural hair."},
|
||||||
title: "Are these for all hair types?",
|
|
||||||
content: "Specifically formulated for curly, coily, and natural hair.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/mixed-race-black-woman-with-neutral-makeup-portrait-curly-hair-ideal-skin-studio-grey-background_633478-1061.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/mixed-race-black-woman-with-neutral-makeup-portrait-curly-hair-ideal-skin-studio-grey-background_633478-1061.jpg"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
@@ -291,8 +182,7 @@ export default function LandingPage() {
|
|||||||
<ContactCenter
|
<ContactCenter
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
title="Join the Movement"
|
title="Join the Movement"
|
||||||
description="Sign up for 10% off your first order and exclusive curly care tips."
|
description="Sign up for 10% off your first order and exclusive curly care tips."
|
||||||
tag="Stay Updated"
|
tag="Stay Updated"
|
||||||
@@ -305,37 +195,25 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: "Shop All",
|
label: "Shop All", href: "#products"},
|
||||||
href: "#products",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Bundles",
|
label: "Bundles", href: "#bundles"},
|
||||||
href: "#bundles",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: "Shipping Policy",
|
label: "Shipping Policy", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Returns",
|
label: "Returns", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: "Contact",
|
label: "Contact", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Instagram",
|
label: "Instagram", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
@@ -345,4 +223,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
37
src/app/shipping-policy/page.tsx
Normal file
37
src/app/shipping-policy/page.tsx
Normal file
@@ -0,0 +1,37 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import LegalSection from '@/components/legal/LegalSection';
|
||||||
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||||
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
|
|
||||||
|
export default function ShippingPolicyPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarStyleCentered
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Policy", id: "#content" }
|
||||||
|
]}
|
||||||
|
brandName="CreamyDream x Cherry"
|
||||||
|
/>
|
||||||
|
<div id="content" className="pt-32 pb-20">
|
||||||
|
<LegalSection
|
||||||
|
layout="page"
|
||||||
|
title="Shipping & Returns Policy"
|
||||||
|
sections={[
|
||||||
|
{ heading: "Shipping", content: { type: "paragraph", text: "We process and ship orders within 2 business days. Standard shipping is flat rate. Enjoy free shipping on all domestic orders over $80." } },
|
||||||
|
{ heading: "Returns", content: { type: "paragraph", text: "We want you to love your products. We accept returns of unopened items in their original packaging within 14 days of delivery. Please contact our support team to initiate a return request." } }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<FooterLogoEmphasis
|
||||||
|
logoText="CreamyDream x Cherry"
|
||||||
|
columns={[]}
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #f7f6f7;
|
--background: #fbfaf8;
|
||||||
--card: #ffffff;
|
--card: #f0ede9;
|
||||||
--foreground: #1b0c25;
|
--foreground: #2d2621;
|
||||||
--primary-cta: #1b0c25;
|
--primary-cta: #c15c4d;
|
||||||
--primary-cta-text: #f7f6f7;
|
--primary-cta-text: #f7f6f7;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #f0ede9;
|
||||||
--secondary-cta-text: #1b0c25;
|
--secondary-cta-text: #1b0c25;
|
||||||
--accent: #ff93e4;
|
--accent: #d6a89c;
|
||||||
--background-accent: #e8a8c3;
|
--background-accent: #e8d2ca;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user