Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 793577030a | |||
| 954cddd547 | |||
| 6f30867703 | |||
| 53bc9200e2 | |||
| 747b279bba | |||
| 55233d7dbf | |||
| cdd8682bea | |||
| 851fc67d01 | |||
| ef162ce8ca | |||
| 80add16d77 | |||
| b1ff4c631e | |||
| 1cf90c9a0c | |||
| 8f2a58ff59 | |||
| f9b1ec5bd0 | |||
| a64d0e9a61 |
63
src/app/menu/page.tsx
Normal file
63
src/app/menu/page.tsx
Normal file
@@ -0,0 +1,63 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
|
import ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog';
|
||||||
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||||
|
|
||||||
|
export default function MenuPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="elastic-effect"
|
||||||
|
defaultTextAnimation="background-highlight"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="largeSmallSizeMediumTitles"
|
||||||
|
background="noise"
|
||||||
|
cardStyle="outline"
|
||||||
|
primaryButtonStyle="shadow"
|
||||||
|
secondaryButtonStyle="solid"
|
||||||
|
headingFontWeight="bold"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarLayoutFloatingOverlay
|
||||||
|
navItems={[
|
||||||
|
{ name: "Home", id: "/" },
|
||||||
|
{ name: "About", id: "/#about" },
|
||||||
|
{ name: "Features", id: "/#features" },
|
||||||
|
{ name: "Menu", id: "/menu" },
|
||||||
|
{ name: "Contact", id: "/#contact" },
|
||||||
|
]}
|
||||||
|
brandName="The Cliff"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="menu" data-section="menu">
|
||||||
|
<ProductCatalog
|
||||||
|
layout="page"
|
||||||
|
products={[
|
||||||
|
{ id: "p1", name: "Grilled Octopus", price: "45 DT", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/bacon_1203-8636.jpg?_wi=1" },
|
||||||
|
{ id: "p2", name: "Mediterranean Salad", price: "22 DT", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/sushi-rolls-with-salmon-tuna-roe-black-slate-plate_84443-94446.jpg?_wi=1" },
|
||||||
|
{ id: "p3", name: "Fresh Sea Bass", price: "55 DT", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/fish-with-onion_1157-23.jpg?_wi=1" },
|
||||||
|
{ id: "p4", name: "Truffle Pasta", price: "48 DT", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/delicious-truffle-recipe-with-pasta-top-view_23-2149548045.jpg?_wi=1" },
|
||||||
|
{ id: "p5", name: "Signature Chocolate Mousse", price: "25 DT", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/red-velvet-cake-stuffed-with-white-butter-cream_114579-2315.jpg?_wi=1" },
|
||||||
|
{ id: "p6", name: "Sunset Aperitif", price: "20 DT", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/traditional-gulas-dish-arrangement_23-2149072617.jpg?_wi=1" },
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterBaseReveal
|
||||||
|
logoText="The Cliff"
|
||||||
|
columns={[
|
||||||
|
{ title: "Quick Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "/#about" }, { label: "Menu", href: "/menu" }] },
|
||||||
|
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
367
src/app/page.tsx
367
src/app/page.tsx
@@ -5,7 +5,7 @@ import ReactLenis from "lenis/react";
|
|||||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||||
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
|
||||||
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
|
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||||
import HeroLogo from '@/components/sections/hero/HeroLogo';
|
import HeroLogo from '@/components/sections/hero/HeroLogo';
|
||||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||||
@@ -29,242 +29,135 @@ export default function LandingPage() {
|
|||||||
headingFontWeight="bold"
|
headingFontWeight="bold"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "Home", id: "hero" },
|
||||||
name: "Home", id: "hero"},
|
{ name: "About", id: "about" },
|
||||||
{
|
{ name: "Features", id: "features" },
|
||||||
name: "About", id: "about"},
|
{ name: "Menu", id: "/menu" },
|
||||||
{
|
{ name: "Contact", id: "contact" },
|
||||||
name: "Features", id: "features"},
|
]}
|
||||||
{
|
brandName="The Cliff"
|
||||||
name: "Menu", id: "products"},
|
/>
|
||||||
{
|
</div>
|
||||||
name: "Contact", id: "contact"},
|
<div id="hero" data-section="hero">
|
||||||
]}
|
<HeroLogo
|
||||||
brandName="The Cliff"
|
logoText="The Cliff"
|
||||||
/>
|
description="Discover the epitome of Mediterranean fine dining at The Cliff. Perched above the azure waters of La Marsa, we provide an exquisite culinary escape defined by seasonal flavors, world-class service, and unmatched panoramic views."
|
||||||
</div>
|
buttons={[
|
||||||
|
{ text: "Secure Your Reservation", href: "#contact" },
|
||||||
<div id="hero" data-section="hero">
|
]}
|
||||||
<HeroLogo
|
buttonAnimation="slide-up"
|
||||||
logoText="The Cliff"
|
imageSrc="http://img.b2bpic.net/free-photo/nature-resort-sky-umbrella-chair_1203-4627.jpg"
|
||||||
description="Experience refined Mediterranean cuisine and impeccable service overlooking the sparkling sea in La Marsa. From sunset aperitifs to intimate dinners, The Cliff delivers unforgettable moments."
|
imageAlt="Stunning seaside view from The Cliff terrace"
|
||||||
buttons={[
|
/>
|
||||||
{
|
</div>
|
||||||
text: "Reserve Your Table", href: "#contact"},
|
<div id="about" data-section="about">
|
||||||
]}
|
<TestimonialAboutCard
|
||||||
buttonAnimation="slide-up"
|
useInvertedBackground={true}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/nature-resort-sky-umbrella-chair_1203-4627.jpg"
|
tag="Our Story"
|
||||||
imageAlt="Stunning seaside view from The Cliff terrace"
|
title="A Legacy of Mediterranean Flavors"
|
||||||
/>
|
description="Perched on the cliffs of La Marsa, our restaurant combines the freshest local ingredients with timeless Mediterranean techniques to create a dining experience that honors our heritage."
|
||||||
</div>
|
subdescription="Every dish reflects our commitment to quality, ensuring that every visit is as special as the view."
|
||||||
|
icon={Flame}
|
||||||
<div id="about" data-section="about">
|
imageSrc="http://img.b2bpic.net/free-photo/chef-working-together-professional-kitchen_23-2149727985.jpg"
|
||||||
<TestimonialAboutCard
|
mediaAnimation="slide-up"
|
||||||
useInvertedBackground={true}
|
/>
|
||||||
tag="Our Story"
|
</div>
|
||||||
title="A Legacy of Mediterranean Flavors"
|
<div id="features" data-section="features">
|
||||||
description="Perched on the cliffs of La Marsa, our restaurant combines the freshest local ingredients with timeless Mediterranean techniques to create a dining experience that honors our heritage."
|
<FeatureCardTwentyFive
|
||||||
subdescription="Every dish reflects our commitment to quality, ensuring that every visit is as special as the view."
|
animationType="slide-up"
|
||||||
icon={Flame}
|
textboxLayout="split"
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/chef-working-together-professional-kitchen_23-2149727985.jpg"
|
useInvertedBackground={false}
|
||||||
mediaAnimation="slide-up"
|
features={[
|
||||||
/>
|
{ title: "Panoramas", description: "Unmatched sea views perfect for sunsets.", icon: Waves, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/side-view-roasted-chicken-served-with-wine-table_140725-12033.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/side-view-boiled-rice-meat-cherries_141793-1422.jpg" }] },
|
||||||
</div>
|
{ title: "Cuisine", description: "Fresh, locally-sourced Mediterranean dishes.", icon: Utensils, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/rice-with-herbs-spices-mushroom-cream-sauce-glass-prosecco_114579-2334.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/italian-pasta-with-tomato-sauce-inside-blue-authentic-bowl_114579-1517.jpg" }] },
|
||||||
|
{ title: "Service", description: "Impeccable attention to detail.", icon: Bell, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/woman-with-fork-delicious-fresh-chocolate-dessert-restaurant_23-2148001620.jpg" }, { imageSrc: "http://img.b2bpic.net/free-photo/beer-sunset-coastal-relaxation-scene_23-2152005867.jpg" }] },
|
||||||
<div id="features" data-section="features">
|
]}
|
||||||
<FeatureCardTwentyFive
|
title="The Cliff Experience"
|
||||||
animationType="slide-up"
|
description="Discover why we are La Marsa's premier dining destination."
|
||||||
textboxLayout="split"
|
/>
|
||||||
useInvertedBackground={false}
|
</div>
|
||||||
features={[
|
<div id="metrics" data-section="metrics">
|
||||||
{
|
<MetricCardOne
|
||||||
title: "Panoramas", description: "Unmatched sea views perfect for sunsets.", icon: Waves,
|
animationType="slide-up"
|
||||||
mediaItems: [
|
textboxLayout="split"
|
||||||
{
|
gridVariant="bento-grid"
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-roasted-chicken-served-with-wine-table_140725-12033.jpg"},
|
useInvertedBackground={true}
|
||||||
{
|
metrics={[
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-boiled-rice-meat-cherries_141793-1422.jpg"},
|
{ id: "m1", value: "15+", title: "Years of Tradition", description: "Serving authentic Mediterranean cuisine.", icon: Award },
|
||||||
],
|
{ id: "m2", value: "500k+", title: "Satisfied Guests", description: "Creating unforgettable dining memories.", icon: Users },
|
||||||
},
|
{ id: "m3", value: "20+", title: "Seasonal Menus", description: "Always fresh, always innovative.", icon: Flame },
|
||||||
{
|
]}
|
||||||
title: "Cuisine", description: "Fresh, locally-sourced Mediterranean dishes.", icon: Utensils,
|
title="Our Impact"
|
||||||
mediaItems: [
|
description="Serving exceptional moments every single day."
|
||||||
{
|
/>
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/rice-with-herbs-spices-mushroom-cream-sauce-glass-prosecco_114579-2334.jpg"},
|
</div>
|
||||||
{
|
<div id="products" data-section="products">
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/italian-pasta-with-tomato-sauce-inside-blue-authentic-bowl_114579-1517.jpg"},
|
<ProductCardOne
|
||||||
],
|
animationType="slide-up"
|
||||||
},
|
textboxLayout="split"
|
||||||
{
|
gridVariant="uniform-all-items-equal"
|
||||||
title: "Service", description: "Impeccable attention to detail.", icon: Bell,
|
useInvertedBackground={false}
|
||||||
mediaItems: [
|
products={[
|
||||||
{
|
{ id: "p1", name: "Grilled Octopus", price: "45 DT", imageSrc: "http://img.b2bpic.net/free-photo/bacon_1203-8636.jpg?_wi=2" },
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-with-fork-delicious-fresh-chocolate-dessert-restaurant_23-2148001620.jpg"},
|
{ id: "p2", name: "Mediterranean Salad", price: "22 DT", imageSrc: "http://img.b2bpic.net/free-photo/sushi-rolls-with-salmon-tuna-roe-black-slate-plate_84443-94446.jpg?_wi=2" },
|
||||||
{
|
{ id: "p3", name: "Fresh Sea Bass", price: "55 DT", imageSrc: "http://img.b2bpic.net/free-photo/fish-with-onion_1157-23.jpg?_wi=2" },
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/beer-sunset-coastal-relaxation-scene_23-2152005867.jpg"},
|
{ id: "p4", name: "Truffle Pasta", price: "48 DT", imageSrc: "http://img.b2bpic.net/free-photo/delicious-truffle-recipe-with-pasta-top-view_23-2149548045.jpg?_wi=2" },
|
||||||
],
|
{ id: "p5", name: "Signature Chocolate Mousse", price: "25 DT", imageSrc: "http://img.b2bpic.net/free-photo/red-velvet-cake-stuffed-with-white-butter-cream_114579-2315.jpg?_wi=2" },
|
||||||
},
|
{ id: "p6", name: "Sunset Aperitif", price: "20 DT", imageSrc: "http://img.b2bpic.net/free-photo/traditional-gulas-dish-arrangement_23-2149072617.jpg?_wi=2" },
|
||||||
]}
|
]}
|
||||||
title="The Cliff Experience"
|
title="Our Signature Dishes"
|
||||||
description="Discover why we are La Marsa's premier dining destination."
|
description="Explore our menu curated for refined palates."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
<div id="testimonials" data-section="testimonials">
|
||||||
<div id="metrics" data-section="metrics">
|
<TestimonialCardSixteen
|
||||||
<MetricCardOne
|
animationType="slide-up"
|
||||||
animationType="slide-up"
|
textboxLayout="split"
|
||||||
textboxLayout="split"
|
useInvertedBackground={true}
|
||||||
gridVariant="bento-grid"
|
testimonials={[
|
||||||
useInvertedBackground={true}
|
{ id: "t1", name: "Sarah Mansour", role: "Local Professional", company: "Tunis", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/cute-tanned-brunette-woman-stylish-red-dress-beret-sunglasses-sits-cafe_197531-24181.jpg" },
|
||||||
metrics={[
|
{ id: "t2", name: "Ahmed Ben Youssef", role: "Architect", company: "La Marsa", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-beautiful-black-skinned-woman-wearing-blouse-flower-headband-enjoying-dinner-while-eating-restaurant_613910-18777.jpg" },
|
||||||
{
|
{ id: "t3", name: "Elena Rossi", role: "Traveler", company: "Italy", rating: 5, imageSrc: "http://img.b2bpic.net/three-best-friends-enjoying-nice-conversation-lunch-modern-cafe-interior_273609-9010.jpg" },
|
||||||
id: "m1", value: "15+", title: "Years of Tradition", description: "Serving authentic Mediterranean cuisine.", icon: Award,
|
{ id: "t4", name: "Yassine Sassi", role: "Entrepreneur", company: "Tunis", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/street-cafe-old-town-lindos-greek-island-rhodes-view-aegean-sea-islands-dodecanese-archipelago-europe-travel-time_166373-3822.jpg" },
|
||||||
},
|
{ id: "t5", name: "Sofia Jellouli", role: "Designer", company: "Local", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/friends-having-fun-their-reunion_23-2149215795.jpg" },
|
||||||
{
|
]}
|
||||||
id: "m2", value: "500k+", title: "Satisfied Guests", description: "Creating unforgettable dining memories.", icon: Users,
|
kpiItems={[{ value: "4.8/5", label: "Avg Rating" }, { value: "10k+", label: "Social Mentions" }, { value: "95%", label: "Return Rate" }]}
|
||||||
},
|
title="Guest Stories"
|
||||||
{
|
description="Hear what our patrons say about their experience."
|
||||||
id: "m3", value: "20+", title: "Seasonal Menus", description: "Always fresh, always innovative.", icon: Flame,
|
/>
|
||||||
},
|
</div>
|
||||||
]}
|
<div id="faq" data-section="faq">
|
||||||
title="Our Impact"
|
<FaqSplitText
|
||||||
description="Serving exceptional moments every single day."
|
useInvertedBackground={false}
|
||||||
/>
|
faqs={[{ id: "f1", title: "Do I need a reservation?", content: "Yes, we highly recommend reservations for evening dining and weekends." }, { id: "f2", title: "Is there outdoor seating?", content: "Yes, our terrace overlooks the sea and is our most popular dining area." }, { id: "f3", title: "Do you accommodate dietary needs?", content: "Our menu features various vegetarian and gluten-free options. Please inform us of allergies." }]}
|
||||||
</div>
|
sideTitle="Frequently Asked Questions"
|
||||||
|
sideDescription="Everything you need to plan your perfect visit."
|
||||||
<div id="products" data-section="products">
|
faqsAnimation="slide-up"
|
||||||
<ProductCardOne
|
/>
|
||||||
animationType="slide-up"
|
</div>
|
||||||
textboxLayout="split"
|
<div id="contact" data-section="contact">
|
||||||
gridVariant="uniform-all-items-equal"
|
<ContactSplitForm
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={true}
|
||||||
products={[
|
title="Book Your Table"
|
||||||
{
|
description="Ready to experience The Cliff? Fill out the form below to secure your spot."
|
||||||
id: "p1", name: "Grilled Octopus", price: "45 DT", imageSrc: "http://img.b2bpic.net/free-photo/bacon_1203-8636.jpg"},
|
inputs={[{ name: "fullName", type: "text", placeholder: "Full Name", required: true }, { name: "email", type: "email", placeholder: "Email Address", required: true }, { name: "date", type: "date", placeholder: "Date", required: true }, { name: "guests", type: "number", placeholder: "Number of Guests", required: true }]}
|
||||||
{
|
textarea={{ name: "notes", placeholder: "Special requests or dietary needs?", rows: 3 }}
|
||||||
id: "p2", name: "Mediterranean Salad", price: "22 DT", imageSrc: "http://img.b2bpic.net/free-photo/sushi-rolls-with-salmon-tuna-roe-black-slate-plate_84443-94446.jpg"},
|
imageSrc="http://img.b2bpic.net/free-photo/businesswoman-looking-her-partner-sitting-chair-caf_23-2147876647.jpg"
|
||||||
{
|
/>
|
||||||
id: "p3", name: "Fresh Sea Bass", price: "55 DT", imageSrc: "http://img.b2bpic.net/free-photo/fish-with-onion_1157-23.jpg"},
|
</div>
|
||||||
{
|
<div id="footer" data-section="footer">
|
||||||
id: "p4", name: "Truffle Pasta", price: "48 DT", imageSrc: "http://img.b2bpic.net/free-photo/delicious-truffle-recipe-with-pasta-top-view_23-2149548045.jpg"},
|
<FooterBaseReveal
|
||||||
{
|
logoText="The Cliff"
|
||||||
id: "p5", name: "Signature Chocolate Mousse", price: "25 DT", imageSrc: "http://img.b2bpic.net/free-photo/red-velvet-cake-stuffed-with-white-butter-cream_114579-2315.jpg"},
|
columns={[
|
||||||
{
|
{ title: "Quick Links", items: [{ label: "Home", href: "#hero" }, { label: "About", href: "#about" }, { label: "Menu", href: "/menu" }] },
|
||||||
id: "p6", name: "Sunset Aperitif", price: "20 DT", imageSrc: "http://img.b2bpic.net/free-photo/traditional-gulas-dish-arrangement_23-2149072617.jpg"},
|
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms of Service", href: "#" }] },
|
||||||
]}
|
]}
|
||||||
title="Our Signature Dishes"
|
/>
|
||||||
description="Explore our menu curated for refined palates."
|
</div>
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="testimonials" data-section="testimonials">
|
|
||||||
<TestimonialCardSixteen
|
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="split"
|
|
||||||
useInvertedBackground={true}
|
|
||||||
testimonials={[
|
|
||||||
{
|
|
||||||
id: "t1", name: "Sarah Mansour", role: "Local Professional", company: "Tunis", rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/cute-tanned-brunette-woman-stylish-red-dress-beret-sunglasses-sits-cafe_197531-24181.jpg"},
|
|
||||||
{
|
|
||||||
id: "t2", name: "Ahmed Ben Youssef", role: "Architect", company: "La Marsa", rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-beautiful-black-skinned-woman-wearing-blouse-flower-headband-enjoying-dinner-while-eating-restaurant_613910-18777.jpg"},
|
|
||||||
{
|
|
||||||
id: "t3", name: "Elena Rossi", role: "Traveler", company: "Italy", rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/three-best-friends-enjoying-nice-conversation-lunch-modern-cafe-interior_273609-9010.jpg"},
|
|
||||||
{
|
|
||||||
id: "t4", name: "Yassine Sassi", role: "Entrepreneur", company: "Tunis", rating: 4,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/street-cafe-old-town-lindos-greek-island-rhodes-view-aegean-sea-islands-dodecanese-archipelago-europe-travel-time_166373-3822.jpg"},
|
|
||||||
{
|
|
||||||
id: "t5", name: "Sofia Jellouli", role: "Designer", company: "Local", rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-having-fun-their-reunion_23-2149215795.jpg"},
|
|
||||||
]}
|
|
||||||
kpiItems={[
|
|
||||||
{
|
|
||||||
value: "4.8/5", label: "Avg Rating"},
|
|
||||||
{
|
|
||||||
value: "10k+", label: "Social Mentions"},
|
|
||||||
{
|
|
||||||
value: "95%", label: "Return Rate"},
|
|
||||||
]}
|
|
||||||
title="Guest Stories"
|
|
||||||
description="Hear what our patrons say about their experience."
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="faq" data-section="faq">
|
|
||||||
<FaqSplitText
|
|
||||||
useInvertedBackground={false}
|
|
||||||
faqs={[
|
|
||||||
{
|
|
||||||
id: "f1", title: "Do I need a reservation?", content: "Yes, we highly recommend reservations for evening dining and weekends."},
|
|
||||||
{
|
|
||||||
id: "f2", title: "Is there outdoor seating?", content: "Yes, our terrace overlooks the sea and is our most popular dining area."},
|
|
||||||
{
|
|
||||||
id: "f3", title: "Do you accommodate dietary needs?", content: "Our menu features various vegetarian and gluten-free options. Please inform us of allergies."},
|
|
||||||
]}
|
|
||||||
sideTitle="Frequently Asked Questions"
|
|
||||||
sideDescription="Everything you need to plan your perfect visit."
|
|
||||||
faqsAnimation="slide-up"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
|
||||||
<ContactSplitForm
|
|
||||||
useInvertedBackground={true}
|
|
||||||
title="Book Your Table"
|
|
||||||
description="Ready to experience The Cliff? Fill out the form below to secure your spot."
|
|
||||||
inputs={[
|
|
||||||
{
|
|
||||||
name: "fullName", type: "text", placeholder: "Full Name", required: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "email", type: "email", placeholder: "Email Address", required: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "date", type: "date", placeholder: "Date", required: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "guests", type: "number", placeholder: "Number of Guests", required: true,
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
textarea={{
|
|
||||||
name: "notes", placeholder: "Special requests or dietary needs?", rows: 3,
|
|
||||||
}}
|
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/businesswoman-looking-her-partner-sitting-chair-caf_23-2147876647.jpg"
|
|
||||||
imageAlt="The entrance of The Cliff"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
|
||||||
<FooterLogoEmphasis
|
|
||||||
columns={[
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Home", href: "#hero"},
|
|
||||||
{
|
|
||||||
label: "About", href: "#about"},
|
|
||||||
{
|
|
||||||
label: "Menu", href: "#products"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Privacy Policy", href: "#"},
|
|
||||||
{
|
|
||||||
label: "Terms of Service", href: "#"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
logoText="The Cliff"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #fafffb;
|
--background: #e3deea;
|
||||||
--card: #ffffff;
|
--card: #ffffff;
|
||||||
--foreground: #001a0a;
|
--foreground: #1f2027;
|
||||||
--primary-cta: #0a705f;
|
--primary-cta: #1f2027;
|
||||||
--primary-cta-text: #fafffb;
|
--primary-cta-text: #e3deea;
|
||||||
--secondary-cta: #ffffff;
|
--secondary-cta: #ffffff;
|
||||||
--secondary-cta-text: #001a0a;
|
--secondary-cta-text: #1f2027;
|
||||||
--accent: #a8d9be;
|
--accent: #627dc6;
|
||||||
--background-accent: #6bbfb8;
|
--background-accent: #627dc6;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user