Update src/app/contact/page.tsx

This commit is contained in:
2026-03-26 17:55:16 +00:00
parent 7b232e294d
commit 377dc257f1

View File

@@ -6,7 +6,7 @@ import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
@@ -24,37 +24,24 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Menu",
id: "/menu",
},
{
name: "About",
id: "/about",
},
{
name: "Book Now",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Menu", id: "/menu" },
{ name: "About", id: "/about" },
{ name: "Book Now", id: "/contact" },
]}
brandName="Muiño"
button={{ text: "Book Now", href: "/contact" }}
/>
</div>
<div id="contact-section" data-section="contact-section">
<ContactSplit
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="Booking"
title="Reserve Your Table"
description="Book your table directly at 0117 907 7112 or via the form below."
imageSrc="http://img.b2bpic.net/free-photo/restaurant-room-with-guns-wall_140725-6307.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/restaurant-room-with-guns-wall_140725-6307.jpg"
mediaAnimation="slide-up"
/>
</div>
@@ -64,29 +51,15 @@ export default function LandingPage() {
logoText="Muiño"
columns={[
{
title: "Contact",
items: [
{
label: "0117 907 7112",
href: "tel:01179077112",
},
{
label: "32 Cotham Hill, Bristol",
href: "#",
},
title: "Contact", items: [
{ label: "0117 907 7112", href: "tel:01179077112" },
{ label: "32 Cotham Hill, Bristol", href: "#" },
],
},
{
title: "Menu",
items: [
{
label: "Tapas",
href: "/menu",
},
{
label: "Seafood",
href: "/menu",
},
title: "Menu", items: [
{ label: "Tapas", href: "/menu" },
{ label: "Seafood", href: "/menu" },
],
},
]}
@@ -95,4 +68,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}