Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b227edc636 | |||
| 1317b7df7b | |||
| 4c87a9021e | |||
| 79e2c1042d |
@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
|
||||||
import ProductCardOne from "@/components/sections/product/ProductCardOne";
|
import ProductCardOne from "@/components/sections/product/ProductCardOne";
|
||||||
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
||||||
|
|
||||||
export default function OrderOnlinePage() {
|
export default function OrderOnlinePage() {
|
||||||
return (
|
return (
|
||||||
@@ -28,31 +28,33 @@ export default function OrderOnlinePage() {
|
|||||||
name: "Home", id: "/"
|
name: "Home", id: "/"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "About", id: "#about"
|
name: "About", id: "/#about"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Spareribs & Menu", id: "#menu"
|
name: "Spareribs & Menu", id: "/#menu"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Order Online", id: "/order-online"
|
name: "Order Online", id: "/order-online"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Events", id: "#events"
|
name: "Events", id: "/#events"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Testimonials", id: "#testimonials"
|
name: "Testimonials", id: "/#testimonials"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "FAQ", id: "#faq"
|
name: "FAQ", id: "/#faq"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Contact", id: "#contact"
|
name: "Contact", id: "/#contact"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Book a Table", href: "#contact"
|
text: "Book a Table", href: "/#contact"
|
||||||
}}
|
}}
|
||||||
brandName="The Old Resto"
|
brandName="The Old Resto"
|
||||||
|
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EiDbwj2wR4WkRq3NrUNPa6gXzp/uploaded-1780653655490-951p9d.svg"
|
||||||
|
logoAlt="The Old Resto Logo"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -96,59 +98,19 @@ export default function OrderOnlinePage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterSimple
|
<FooterLogoReveal
|
||||||
columns={[
|
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EiDbwj2wR4WkRq3NrUNPa6gXzp/uploaded-1780653655490-951p9d.svg"
|
||||||
{
|
logoAlt="The Old Resto Logo"
|
||||||
title: "Explore", items: [
|
logoText="The Old Resto"
|
||||||
{
|
leftLink={{
|
||||||
label: "Home", href: "/"
|
text: "Home", href: "/"
|
||||||
},
|
}}
|
||||||
{
|
rightLink={{
|
||||||
label: "About Us", href: "#about"
|
text: "Reservations", href: "/#contact"
|
||||||
},
|
}}
|
||||||
{
|
|
||||||
label: "Our Menu", href: "#menu"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Order Online", href: "/order-online"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Private Events", href: "#events"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Connect", items: [
|
|
||||||
{
|
|
||||||
label: "Reservations", href: "#contact"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Contact Us", href: "#contact"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Careers", href: "#"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Press", href: "#"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Legal", items: [
|
|
||||||
{
|
|
||||||
label: "Privacy Policy", href: "#"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Terms of Service", href: "#"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
bottomLeftText="© 2024 The Old Resto. All rights reserved."
|
|
||||||
bottomRightText="Crafted with tradition."
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
|
|||||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||||
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
|
import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen';
|
||||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||||
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
|
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
|
||||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||||
@@ -33,34 +33,36 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleCentered
|
<NavbarStyleCentered
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home", id: "#home"
|
name: "Home", id: "/"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "About", id: "#about"
|
name: "About", id: "/#about"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Spareribs & Menu", id: "#menu"
|
name: "Spareribs & Menu", id: "/#menu"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Order Online", id: "/order-online"
|
name: "Order Online", id: "/order-online"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Events", id: "#events"
|
name: "Events", id: "/#events"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Testimonials", id: "#testimonials"
|
name: "Testimonials", id: "/#testimonials"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "FAQ", id: "#faq"
|
name: "FAQ", id: "/#faq"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Contact", id: "#contact"
|
name: "Contact", id: "/#contact"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
button={{
|
button={{
|
||||||
text: "Book a Table", href: "#contact"
|
text: "Book a Table", href: "/#contact"
|
||||||
}}
|
}}
|
||||||
brandName="The Old Resto"
|
brandName="The Old Resto"
|
||||||
|
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EiDbwj2wR4WkRq3NrUNPa6gXzp/uploaded-1780653655490-951p9d.svg"
|
||||||
|
logoAlt="The Old Resto Logo"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -72,10 +74,10 @@ export default function LandingPage() {
|
|||||||
description="Dive into endless plates of our succulent, slow-cooked spareribs, glazed to perfection. An unforgettable feast awaits!"
|
description="Dive into endless plates of our succulent, slow-cooked spareribs, glazed to perfection. An unforgettable feast awaits!"
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "View Our Menu", href: "#menu"
|
text: "View Our Menu", href: "/#menu"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: "Claim Your Spareribs Feast", href: "#events"
|
text: "Claim Your Spareribs Feast", href: "/#events"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
buttonAnimation="opacity"
|
buttonAnimation="opacity"
|
||||||
@@ -160,7 +162,7 @@ export default function LandingPage() {
|
|||||||
id: "p2", name: "Pan-Seared Scallops", price: "€38.00", imageSrc: "http://img.b2bpic.net/free-photo/salmon-salad_74190-5239.jpg", imageAlt: "Fresh seafood platter"
|
id: "p2", name: "Pan-Seared Scallops", price: "€38.00", imageSrc: "http://img.b2bpic.net/free-photo/salmon-salad_74190-5239.jpg", imageAlt: "Fresh seafood platter"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "p3", name: "Truffle Mushroom Risotto", price: "€29.00", imageSrc: "http://img.b2bpic.net/free-photo/creamy-risotto-with-herbs-cheese-white-bowl_9975-124450.jpg", imageAlt: "Creamy mushroom risotto"
|
id: "p3", name: "Truffle Mushroom Risotto", price: "€29.00", imageSrc: "https://img.b2bpic.net/premium-photo/plate-pasta-with-bottle-beer-it_975681-4909.jpg?id=229148558", imageAlt: "Creamy mushroom risotto"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "p4", name: "Classic Carbonara", price: "€26.00", imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-with-kitchen-utensils-dark-background_23-2148296895.jpg", imageAlt: "Creamy pasta dish"
|
id: "p4", name: "Classic Carbonara", price: "€26.00", imageSrc: "http://img.b2bpic.net/free-photo/close-up-person-with-kitchen-utensils-dark-background_23-2148296895.jpg", imageAlt: "Creamy pasta dish"
|
||||||
@@ -182,7 +184,7 @@ export default function LandingPage() {
|
|||||||
plans={[
|
plans={[
|
||||||
{
|
{
|
||||||
id: "spareribs-feast", tag: "Limited Time Offer", price: "€35", period: "per person", description: "Indulge in endless plates of our signature, slow-cooked spareribs, accompanied by your choice of delicious sides.", button: {
|
id: "spareribs-feast", tag: "Limited Time Offer", price: "€35", period: "per person", description: "Indulge in endless plates of our signature, slow-cooked spareribs, accompanied by your choice of delicious sides.", button: {
|
||||||
text: "Book Spareribs Feast", href: "#contact"
|
text: "Book Spareribs Feast", href: "/#contact"
|
||||||
},
|
},
|
||||||
featuresTitle: "Includes:", features: [
|
featuresTitle: "Includes:", features: [
|
||||||
"All-You-Can-Eat Signature Spareribs", "Choice of 2 Sides (e.g., Fries, Coleslaw)", "Non-alcoholic Beverages"
|
"All-You-Can-Eat Signature Spareribs", "Choice of 2 Sides (e.g., Fries, Coleslaw)", "Non-alcoholic Beverages"
|
||||||
@@ -190,7 +192,7 @@ export default function LandingPage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "premium", tag: "Popular", price: "€120", period: "per guest", description: "An elevated dining experience with premium selections.", button: {
|
id: "premium", tag: "Popular", price: "€120", period: "per guest", description: "An elevated dining experience with premium selections.", button: {
|
||||||
text: "Select Premium", href: "#contact"
|
text: "Select Premium", href: "/#contact"
|
||||||
},
|
},
|
||||||
featuresTitle: "Includes:", features: [
|
featuresTitle: "Includes:", features: [
|
||||||
"5-Course Tasting Menu", "Amuse-bouche", "Choice of 3 Appetizers", "Choice of 4 Main Courses", "2 Dessert Selections", "Sommelier-selected Wine Pairing", "Coffee & Tea Service"
|
"5-Course Tasting Menu", "Amuse-bouche", "Choice of 3 Appetizers", "Choice of 4 Main Courses", "2 Dessert Selections", "Sommelier-selected Wine Pairing", "Coffee & Tea Service"
|
||||||
@@ -198,7 +200,7 @@ export default function LandingPage() {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "bespoke", tag: "Custom", price: "Contact for Quote", period: "per event", description: "Tailored to your every desire for a truly unique event.", button: {
|
id: "bespoke", tag: "Custom", price: "Contact for Quote", period: "per event", description: "Tailored to your every desire for a truly unique event.", button: {
|
||||||
text: "Inquire Now", href: "#contact"
|
text: "Inquire Now", href: "/#contact"
|
||||||
},
|
},
|
||||||
featuresTitle: "Includes:", features: [
|
featuresTitle: "Includes:", features: [
|
||||||
"Fully Customizable Menu", "Private Chef & Service Staff", "Exclusive Venue Access", "Premium Beverage Package", "Decor & Ambiance Consultation"
|
"Fully Customizable Menu", "Private Chef & Service Staff", "Exclusive Venue Access", "Premium Beverage Package", "Decor & Ambiance Consultation"
|
||||||
@@ -290,69 +292,29 @@ export default function LandingPage() {
|
|||||||
description="Klaar om te genieten van de tijdloze smaken en elegante sfeer van The Old Resto? Reserveer vandaag nog uw tafel en laat ons een memorabele avond voor u creëren."
|
description="Klaar om te genieten van de tijdloze smaken en elegante sfeer van The Old Resto? Reserveer vandaag nog uw tafel en laat ons een memorabele avond voor u creëren."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Maak een Reservering", href: "#"
|
text: "Maak een Reservering", href: "/#contact"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: "Stuur een Aanvraag", href: "#"
|
text: "Stuur een Aanvraag", href: "/#contact"
|
||||||
}
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterSimple
|
<FooterLogoReveal
|
||||||
columns={[
|
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3EiDbwj2wR4WkRq3NrUNPa6gXzp/uploaded-1780653655490-951p9d.svg"
|
||||||
{
|
logoAlt="The Old Resto Logo"
|
||||||
title: "Verken", items: [
|
logoText="The Old Resto"
|
||||||
{
|
leftLink={{
|
||||||
label: "Thuis", href: "#home"
|
text: "Home", href: "/"
|
||||||
},
|
}}
|
||||||
{
|
rightLink={{
|
||||||
label: "Over Ons", href: "#about"
|
text: "Reservations", href: "/#contact"
|
||||||
},
|
}}
|
||||||
{
|
|
||||||
label: "Ons Menu", href: "#menu"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Online Bestellen", href: "/order-online"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Privé-evenementen", href: "#events"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Verbinden", items: [
|
|
||||||
{
|
|
||||||
label: "Reserveringen", href: "#contact"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Contacteer Ons", href: "#contact"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Carrières", href: "#"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Pers", href: "#"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Wettelijk", items: [
|
|
||||||
{
|
|
||||||
label: "Privacybeleid", href: "#"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Servicevoorwaarden", href: "#"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
bottomLeftText="© 2024 The Old Resto. Alle rechten voorbehouden."
|
|
||||||
bottomRightText="Gemaakt met traditie."
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user