Update src/app/reservations/page.tsx
This commit is contained in:
@@ -3,7 +3,6 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
|
||||
@@ -25,22 +24,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "/menu",
|
||||
},
|
||||
{
|
||||
name: "Reservations",
|
||||
id: "/reservations",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Menu", id: "/menu" },
|
||||
{ name: "Reservations", id: "/reservations" },
|
||||
{ name: "About", id: "/about" },
|
||||
]}
|
||||
brandName="Velora Café"
|
||||
/>
|
||||
@@ -53,20 +40,11 @@ export default function LandingPage() {
|
||||
tag="Booking"
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
value: "Easy",
|
||||
description: "Seamless booking experience",
|
||||
},
|
||||
id: "m1", value: "Easy", description: "Seamless booking experience"},
|
||||
{
|
||||
id: "m2",
|
||||
value: "Private",
|
||||
description: "Exclusive dining corners",
|
||||
},
|
||||
id: "m2", value: "Private", description: "Exclusive dining corners"},
|
||||
{
|
||||
id: "m3",
|
||||
value: "Anytime",
|
||||
description: "Available 7 days a week",
|
||||
},
|
||||
id: "m3", value: "Anytime", description: "Available 7 days a week"},
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -82,72 +60,15 @@ export default function LandingPage() {
|
||||
showStepNumbers={true}
|
||||
features={[
|
||||
{
|
||||
title: "Prioritized Entry",
|
||||
description: "Skip the queue during peak coffee hours.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-young-man-white-suit-with-embroidery-sits-windowsill-before-bright-window_8353-8275.jpg",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-woman-striped-trench-coat-happily-talking-cellphone-sitting-near-big-window-while-spending-time-modern-cafe_574295-4851.jpg",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/double-espresso-coffee-mug-with-cinnamon-sticks-coffee-beans-wooden-board_181624-57338.jpg?_wi=2",
|
||||
imageAlt: "Handsome young man in white suit with embroidery sits on a windowsill before bright window",
|
||||
title: "Prioritized Entry", description: "Skip the queue during peak coffee hours.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/handsome-young-man-white-suit-with-embroidery-sits-windowsill-before-bright-window_8353-8275.jpg" },
|
||||
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/young-attractive-woman-striped-trench-coat-happily-talking-cellphone-sitting-near-big-window-while-spending-time-modern-cafe_574295-4851.jpg" },
|
||||
media: { imageSrc: "http://img.b2bpic.net/free-photo/double-espresso-coffee-mug-with-cinnamon-sticks-coffee-beans-wooden-board_181624-57338.jpg", imageAlt: "Handsome young man in white suit with embroidery sits on a windowsill before bright window" }
|
||||
},
|
||||
{
|
||||
title: "Custom Settings",
|
||||
description: "Request your preferred table or ambient lighting.",
|
||||
phoneOne: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/restaurant-hall-with-leather-armchairs-french-windows_140725-8445.jpg",
|
||||
},
|
||||
phoneTwo: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-restaurant-table-with-pink-velvet-chairs-grey-painted-hall-with-classic-paintings_140725-8705.jpg",
|
||||
},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/restaurant-room-with-two-long-dinner-tables_140725-8455.jpg?_wi=2",
|
||||
imageAlt: "Handsome young man in white suit with embroidery sits on a windowsill before bright window",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/high-view-coffee-kettle-table_23-2148251563.jpg?_wi=3"
|
||||
logoText="Velora Café"
|
||||
columns={[
|
||||
{
|
||||
title: "Discover",
|
||||
items: [
|
||||
{
|
||||
label: "Our Story",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
label: "Menu",
|
||||
href: "/menu",
|
||||
},
|
||||
{
|
||||
label: "Reserve",
|
||||
href: "/reservations",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "/faq",
|
||||
},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
],
|
||||
},
|
||||
title: "Custom Settings", description: "Request your preferred table or ambient lighting.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/restaurant-hall-with-leather-armchairs-french-windows_140725-8445.jpg" },
|
||||
phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/close-up-restaurant-table-with-pink-velvet-chairs-grey-painted-hall-with-classic-paintings_140725-8705.jpg" },
|
||||
media: { imageSrc: "http://img.b2bpic.net/free-photo/restaurant-room-with-two-long-dinner-tables_140725-8455.jpg", imageAlt: "Handsome young man in white suit with embroidery sits on a windowsill before bright window" }
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user