Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fe0903d5a5 | |||
| 47d97b9d7f | |||
| 834c6db592 | |||
| ab88555e28 | |||
| 93c0cacafc | |||
| 43fea0d911 | |||
| 59cdeff2ca | |||
| c75193d2a5 | |||
| 8bd4bafdd1 | |||
| aa02bb4d8e |
@@ -38,6 +38,8 @@ export default function LandingPage() {
|
|||||||
{ name: "Features", id: "features" },
|
{ name: "Features", id: "features" },
|
||||||
{ name: "Testimonials", id: "testimonials" },
|
{ name: "Testimonials", id: "testimonials" },
|
||||||
{ name: "FAQ", id: "faq" },
|
{ name: "FAQ", id: "faq" },
|
||||||
|
{ name: "Reservation", id: "/reservation" },
|
||||||
|
{ name: "Terms and Conditions", id: "/terms-and-conditions" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "contact" },
|
||||||
]}
|
]}
|
||||||
brandName="Lisboa II"
|
brandName="Lisboa II"
|
||||||
@@ -50,7 +52,7 @@ export default function LandingPage() {
|
|||||||
title="Authentic Portuguese Soul in Luxembourg"
|
title="Authentic Portuguese Soul in Luxembourg"
|
||||||
description="Experience the true essence of Portugal with fresh, traditional ingredients and warm, attentive service. Join us for a culinary journey in the heart of Luxembourg."
|
description="Experience the true essence of Portugal with fresh, traditional ingredients and warm, attentive service. Join us for a culinary journey in the heart of Luxembourg."
|
||||||
tag="Since 2012"
|
tag="Since 2012"
|
||||||
buttons={[{ text: "Book a Table", href: "#contact" }]}
|
buttons={[{ text: "Reserve Your Table", href: "/reservation" }]}
|
||||||
mediaItems={[
|
mediaItems={[
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/stone-walled-restaurant-top-lighting_140725-9731.jpg", imageAlt: "Restaurant Ambiance"},
|
imageSrc: "http://img.b2bpic.net/free-photo/stone-walled-restaurant-top-lighting_140725-9731.jpg", imageAlt: "Restaurant Ambiance"},
|
||||||
@@ -159,9 +161,8 @@ export default function LandingPage() {
|
|||||||
inputs={[
|
inputs={[
|
||||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||||
{ name: "date", type: "date", placeholder: "Date", required: true },
|
{ name: "date", type: "date", placeholder: "Date", required: true },
|
||||||
{ name: "partySize", type: "number", placeholder: "Party Size", required: true }
|
|
||||||
]}
|
]}
|
||||||
textarea={{ name: "message", placeholder: "Special requests", rows: 4 }}
|
textarea={{ name: "message", placeholder: "Special requests or party size", rows: 4 }}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/elderly-adult-registering-hotel-lobby_482257-81621.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/elderly-adult-registering-hotel-lobby_482257-81621.jpg"
|
||||||
imageAlt="Restaurant reservation desk"
|
imageAlt="Restaurant reservation desk"
|
||||||
/>
|
/>
|
||||||
@@ -180,4 +181,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
61
src/app/reservation/page.tsx
Normal file
61
src/app/reservation/page.tsx
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
|
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||||
|
import { Facebook, Instagram } from "lucide-react";
|
||||||
|
|
||||||
|
export default function ReservationPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="text-stagger"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="rounded"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="medium"
|
||||||
|
background="circleGradient"
|
||||||
|
cardStyle="glass-elevated"
|
||||||
|
primaryButtonStyle="gradient"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="normal"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarStyleFullscreen
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Reservation", id: "/reservation" },
|
||||||
|
{ name: "Terms and Conditions", id: "/terms-and-conditions" },
|
||||||
|
]}
|
||||||
|
brandName="Lisboa II"
|
||||||
|
/>
|
||||||
|
<div className="pt-32 pb-20">
|
||||||
|
<ContactSplitForm
|
||||||
|
useInvertedBackground={false}
|
||||||
|
title="Make a Reservation"
|
||||||
|
description="Please fill out the form below to secure your table with us."
|
||||||
|
inputs={[
|
||||||
|
{ name: "name", type: "text", placeholder: "Full Name", required: true },
|
||||||
|
{ name: "email", type: "email", placeholder: "Email Address", required: true },
|
||||||
|
{ name: "date", type: "date", placeholder: "Reservation Date", required: true },
|
||||||
|
{ name: "time", type: "time", placeholder: "Reservation Time", required: true },
|
||||||
|
{ name: "guests", type: "number", placeholder: "Number of Guests", required: true },
|
||||||
|
]}
|
||||||
|
textarea={{ name: "requests", placeholder: "Special dietary requirements or requests", rows: 4 }}
|
||||||
|
imageSrc="http://img.b2bpic.net/free-photo/elderly-adult-registering-hotel-lobby_482257-81621.jpg"
|
||||||
|
imageAlt="Reservation Desk"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<FooterCard
|
||||||
|
logoText="Lisboa II"
|
||||||
|
copyrightText="© 2024 Lisboa II. All rights reserved."
|
||||||
|
socialLinks={[
|
||||||
|
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
|
||||||
|
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
56
src/app/terms-and-conditions/page.tsx
Normal file
56
src/app/terms-and-conditions/page.tsx
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
|
import LegalSection from '@/components/legal/LegalSection';
|
||||||
|
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||||
|
import { Facebook, Instagram } from "lucide-react";
|
||||||
|
|
||||||
|
export default function TermsPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="text-stagger"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="rounded"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="medium"
|
||||||
|
background="circleGradient"
|
||||||
|
cardStyle="glass-elevated"
|
||||||
|
primaryButtonStyle="gradient"
|
||||||
|
secondaryButtonStyle="glass"
|
||||||
|
headingFontWeight="normal"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<NavbarStyleFullscreen
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "Reservation", id: "/reservation" },
|
||||||
|
{ name: "Terms and Conditions", id: "/terms-and-conditions" },
|
||||||
|
]}
|
||||||
|
brandName="Lisboa II"
|
||||||
|
/>
|
||||||
|
<div className="pt-32 pb-20">
|
||||||
|
<LegalSection
|
||||||
|
layout="page"
|
||||||
|
title="Terms and Conditions"
|
||||||
|
subtitle="Last updated: 2024"
|
||||||
|
sections={[
|
||||||
|
{ heading: "Reservation Policy", content: [{ type: "paragraph", text: "By making a reservation, you agree to our booking policies. Please notify us of any cancellations at least 24 hours in advance." }] },
|
||||||
|
{ heading: "Dietary Requirements", content: [{ type: "paragraph", text: "We strive to accommodate all dietary requirements. Please inform our staff about any allergies when making your booking." }] },
|
||||||
|
{ heading: "Code of Conduct", content: [{ type: "paragraph", text: "We maintain a respectful environment for all our guests and staff." }] }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<FooterCard
|
||||||
|
logoText="Lisboa II"
|
||||||
|
copyrightText="© 2024 Lisboa II. All rights reserved."
|
||||||
|
socialLinks={[
|
||||||
|
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
|
||||||
|
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user