Update src/app/contact/page.tsx
This commit is contained in:
@@ -25,24 +25,13 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "Reservations",
|
||||
id: "/reservations",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Reservations", id: "/reservations" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
brandName="THE WISEMEN"
|
||||
button={{ text: "Reserve", href: "/reservations" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -52,16 +41,8 @@ export default function LandingPage() {
|
||||
title="Get In Touch"
|
||||
description="We are here to assist with any questions."
|
||||
inputs={[
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Email",
|
||||
},
|
||||
{
|
||||
name: "inquiry",
|
||||
type: "text",
|
||||
placeholder: "Subject",
|
||||
},
|
||||
{ name: "email", type: "email", placeholder: "Email" },
|
||||
{ name: "inquiry", type: "text", placeholder: "Subject" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/city-background-panoramic-view_23-2148892961.jpg"
|
||||
/>
|
||||
@@ -76,20 +57,8 @@ export default function LandingPage() {
|
||||
title="Find Us"
|
||||
description="Located in the heart of the city."
|
||||
features={[
|
||||
{
|
||||
title: "Directions",
|
||||
description: "Easy access from main transport hubs.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/restaurant-luxury-interior-design-dark-lightning_114579-2492.jpg",
|
||||
titleImageSrc: "http://img.b2bpic.net/free-photo/burning-candle-table_140725-8115.jpg",
|
||||
buttonText: "View Map",
|
||||
},
|
||||
{
|
||||
title: "Operating Hours",
|
||||
description: "Open Tuesday to Sunday for dinner.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-wooden-table_417767-153.jpg",
|
||||
titleImageSrc: "http://img.b2bpic.net/free-photo/glass-tower-full-champaigne-mosaic-background_8353-10398.jpg",
|
||||
buttonText: "View Hours",
|
||||
},
|
||||
{ title: "Directions", description: "Easy access from main transport hubs.", imageSrc: "http://img.b2bpic.net/free-photo/restaurant-luxury-interior-design-dark-lightning_114579-2492.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/burning-candle-table_140725-8115.jpg", buttonText: "View Map" },
|
||||
{ title: "Operating Hours", description: "Open Tuesday to Sunday for dinner.", imageSrc: "http://img.b2bpic.net/free-photo/black-wooden-table_417767-153.jpg", titleImageSrc: "http://img.b2bpic.net/free-photo/glass-tower-full-champaigne-mosaic-background_8353-10398.jpg", buttonText: "View Hours" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -98,28 +67,8 @@ export default function LandingPage() {
|
||||
<FooterBaseCard
|
||||
logoText="THE WISEMEN"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigate",
|
||||
items: [
|
||||
{
|
||||
label: "Home",
|
||||
href: "/",
|
||||
},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal",
|
||||
items: [
|
||||
{
|
||||
label: "Privacy",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ title: "Navigate", items: [{ label: "Home", href: "/" }, { label: "Menu", href: "/menu" }] },
|
||||
{ title: "Legal", items: [{ label: "Privacy", href: "#" }] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user