Update src/app/page.tsx

This commit is contained in:
2026-04-30 06:40:12 +00:00
parent 56a017e53b
commit 4ccb9b431b

View File

@@ -30,10 +30,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "#hero" },
{ name: "Home", id: "/" },
{ name: "Products", id: "#products" },
{ name: "About", id: "#about" },
{ name: "Contact", id: "#contact" },
{ name: "Contact", id: "/contact" },
]}
brandName=""
/>
@@ -130,21 +130,11 @@ export default function LandingPage() {
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={true}
background={{ variant: "plain" }}
tag="Contact Us"
title="Get In Touch"
description="Call us at +1 234 567 890 or use the form below."
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Sweet Delights"
columns={[
{ title: "Navigate", items: [{ label: "Home", href: "#hero" }, { label: "Products", href: "#products" }] },
{ title: "Navigate", items: [{ label: "Home", href: "/" }, { label: "Products", href: "#products" }] },
{ title: "Social", items: [{ label: "WhatsApp", href: "https://wa.me/1234567890" }] }
]}
/>