Add src/app/shipping-policy/page.tsx

This commit is contained in:
2026-04-25 17:15:55 +00:00
parent 1e89787656
commit 8a2d7af092

View 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>
<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>
);
}