Update src/app/delivery/page.tsx
This commit is contained in:
@@ -7,7 +7,7 @@ import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function DeliveryPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-shift"
|
||||
@@ -22,59 +22,56 @@ export default function LandingPage() {
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Shop", id: "/shop"},
|
||||
{
|
||||
name: "Checkout", id: "/checkout"},
|
||||
{
|
||||
name: "Delivery", id: "/delivery"},
|
||||
]}
|
||||
brandName="LEX"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Shop", id: "/shop" },
|
||||
{ name: "Checkout", id: "/checkout" },
|
||||
{ name: "Delivery", id: "/delivery" },
|
||||
]}
|
||||
brandName="LEX"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="legal" data-section="legal">
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="Delivery Policy"
|
||||
sections={[
|
||||
{
|
||||
heading: "Shipping Times", content: {
|
||||
items: [
|
||||
"Standard: 3-5 days", "Express: 1-2 days"],
|
||||
},
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="legal" data-section="legal">
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="Delivery Policy"
|
||||
sections={[
|
||||
{
|
||||
heading: "Shipping Times", content: {
|
||||
type: "list", items: ["Standard: 3-5 days", "Express: 1-2 days"]
|
||||
}
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardSeven
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Our Shipping Promise"
|
||||
description="Fast and reliable delivery."
|
||||
features={[
|
||||
{
|
||||
title: "Tracking", description: "Full tracking on all orders.", imageSrc: "http://img.b2bpic.net/free-photo/clothes-search-bar-box-banner-badge_53876-121020.jpg"},
|
||||
{
|
||||
title: "Safe Packaging", description: "Items arrive in perfect condition.", imageSrc: "http://img.b2bpic.net/free-photo/black-clothes-hangers-terracotta-background-with-copy-space-idea-sale-creative-shopping-concept-flat-lay-minimalistic-style-creative-layout-fashion-shop-sale-blog-banner_166373-1748.jpg"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="feature" data-section="feature">
|
||||
<FeatureCardSeven
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Our Shipping Promise"
|
||||
description="Fast and reliable delivery."
|
||||
features={[
|
||||
{
|
||||
title: "Tracking", description: "Full tracking on all orders.", imageSrc: "http://img.b2bpic.net/free-photo/clothes-search-bar-box-banner-badge_53876-121020.jpg"
|
||||
},
|
||||
{
|
||||
title: "Safe Packaging", description: "Items arrive in perfect condition.", imageSrc: "http://img.b2bpic.net/free-photo/black-clothes-hangers-terracotta-background-with-copy-space-idea-sale-creative-shopping-concept-flat-lay-minimalistic-style-creative-layout-fashion-shop-sale-blog-banner_166373-1748.jpg"
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="LEX STYLISH CLOTHS"
|
||||
copyrightText="© 2025 Lex Stylish Cloths. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="LEX STYLISH CLOTHS"
|
||||
copyrightText="© 2025 Lex Stylish Cloths. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user