Merge version_1 into main

Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-04-11 12:54:59 +00:00
2 changed files with 88 additions and 95 deletions

View File

@@ -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 CheckoutPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
@@ -22,52 +22,48 @@ 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="Checkout Terms"
sections={[
{
heading: "Payment Policy", content: {
text: "All payments are processed securely."},
},
]}
/>
</div>
<div id="legal" data-section="legal">
<LegalSection
layout="page"
title="Checkout Terms"
sections={[
{
heading: "Payment Policy", content: {
type: "paragraph", text: "All payments are processed securely."
}
}
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{
variant: "plain"}}
tag="Support"
title="Need Help Ordering?"
description="Reach out to our support team."
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{ variant: "plain" }}
tag="Support"
title="Need Help Ordering?"
description="Reach out to our support team."
/>
</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>
);

View File

@@ -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>
);