Update src/app/contact/page.tsx

This commit is contained in:
2026-06-03 15:46:34 +00:00
parent c0ae5b220d
commit e48cd56e81

View File

@@ -26,25 +26,15 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Menu",
id: "/menu",
},
name: "Menu", id: "/menu"},
{
name: "Gallery",
id: "/gallery",
},
name: "Gallery", id: "/gallery"},
{
name: "Reviews",
id: "/reviews",
},
name: "Reviews", id: "/reviews"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
]}
logoSrc="http://img.b2bpic.net/free-photo/top-view-lemon-tart-plate_23-2148519057.jpg"
logoAlt="Flavor Fusion Bistro Logo"
@@ -56,8 +46,7 @@ export default function LandingPage() {
<ContactSplit
useInvertedBackground={true}
background={{
variant: "plain",
}}
variant: "plain"}}
tag="Visit Us"
title="Reach Out & Reserve"
description="Have questions or want to book a table for an unforgettable dining experience? Our team is ready to assist you. Find us easily using the map below for directions."
@@ -86,54 +75,33 @@ export default function LandingPage() {
logoText="Flavor Fusion Bistro"
columns={[
{
title: "Explore",
items: [
title: "Explore", items: [
{
label: "Home",
href: "/",
},
label: "Home", href: "/"},
{
label: "Menu",
href: "/menu",
},
label: "Menu", href: "/menu"},
{
label: "Gallery",
href: "/gallery",
},
label: "Gallery", href: "/gallery"},
],
},
{
title: "About Us",
items: [
title: "About Us", items: [
{
label: "Our Story",
href: "/#about",
},
label: "Our Story", href: "/#about"},
{
label: "Reviews",
href: "/reviews",
},
label: "Reviews", href: "/reviews"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
],
},
{
title: "Connect",
items: [
title: "Connect", items: [
{
label: "Facebook",
href: "#",
},
label: "Facebook", href: "#"},
{
label: "Instagram",
href: "#",
},
label: "Instagram", href: "#"},
{
label: "Reservations",
href: "/contact",
},
label: "Reservations", href: "/contact"},
],
},
]}
@@ -143,4 +111,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}