Update src/app/checkout/page.tsx

This commit is contained in:
2026-04-11 12:54:56 +00:00
parent b14d98abc1
commit e2da1a36bd

View File

@@ -7,7 +7,7 @@ import FooterCard from '@/components/sections/footer/FooterCard';
import LegalSection from '@/components/legal/LegalSection'; import LegalSection from '@/components/legal/LegalSection';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
export default function LandingPage() { export default function CheckoutPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="text-shift" defaultButtonVariant="text-shift"
@@ -22,52 +22,48 @@ export default function LandingPage() {
headingFontWeight="extrabold" headingFontWeight="extrabold"
> >
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[ navItems={[
{ { name: "Home", id: "/" },
name: "Home", id: "/"}, { name: "Shop", id: "/shop" },
{ { name: "Checkout", id: "/checkout" },
name: "Shop", id: "/shop"}, { name: "Delivery", id: "/delivery" },
{ ]}
name: "Checkout", id: "/checkout"}, brandName="LEX"
{ />
name: "Delivery", id: "/delivery"}, </div>
]}
brandName="LEX"
/>
</div>
<div id="legal" data-section="legal"> <div id="legal" data-section="legal">
<LegalSection <LegalSection
layout="page" layout="page"
title="Checkout Terms" title="Checkout Terms"
sections={[ sections={[
{ {
heading: "Payment Policy", content: { heading: "Payment Policy", content: {
text: "All payments are processed securely."}, type: "paragraph", text: "All payments are processed securely."
}, }
]} }
/> ]}
</div> />
</div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactCenter <ContactCenter
useInvertedBackground={false} useInvertedBackground={false}
background={{ background={{ variant: "plain" }}
variant: "plain"}} tag="Support"
tag="Support" title="Need Help Ordering?"
title="Need Help Ordering?" description="Reach out to our support team."
description="Reach out to our support team." />
/> </div>
</div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterCard <FooterCard
logoText="LEX STYLISH CLOTHS" logoText="LEX STYLISH CLOTHS"
copyrightText="© 2025 Lex Stylish Cloths. All rights reserved." copyrightText="© 2025 Lex Stylish Cloths. All rights reserved."
/> />
</div> </div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );