Compare commits
45 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fa375435f1 | |||
| 3a7905666b | |||
| da4f9278b6 | |||
| 842d7fd318 | |||
| fe51be59ea | |||
| 22fd3fa99b | |||
| f7e56bae85 | |||
| 953d18ccd8 | |||
| ef6a873d55 | |||
| ba9169a567 | |||
| d6321c2492 | |||
| b08a2a0424 | |||
| be18055497 | |||
| 136e9dfd70 | |||
| 85cf495a64 | |||
| cf40dc7959 | |||
| 5c173594fb | |||
| 4f08b64729 | |||
| f3690fac98 | |||
| ffb0eaa876 | |||
| 91fd9d48f8 | |||
| d129affae8 | |||
| cf9fa5feb1 | |||
| 7a2333ce1f | |||
| aee05abf52 | |||
| 4489ef01ed | |||
| 957bf8fb0b | |||
| 13f50f2ec2 | |||
| 0d4248981a | |||
| d8ff23494c | |||
| 03fdb4c4db | |||
| 9528f868ad | |||
| 3eeac0eb54 | |||
| 8166889bed | |||
| d43f396b37 | |||
| cd5d98b27b | |||
| 17c73ed1c8 | |||
| a0242ea8c1 | |||
| f5cdfe9406 | |||
| 00a476b758 | |||
| 0202aded04 | |||
| afba139560 | |||
| 61cd5fdea3 | |||
| 6321b250ce | |||
| d7d21c9b93 |
@@ -1,38 +0,0 @@
|
|||||||
"use client";
|
|
||||||
|
|
||||||
import ReactLenis from "lenis/react";
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
||||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
|
||||||
import { Instagram, Facebook, Linkedin } from "lucide-react";
|
|
||||||
|
|
||||||
export default function AboutPage() {
|
|
||||||
return (
|
|
||||||
<ThemeProvider
|
|
||||||
defaultButtonVariant="icon-arrow"
|
|
||||||
defaultTextAnimation="entrance-slide"
|
|
||||||
borderRadius="rounded"
|
|
||||||
contentWidth="medium"
|
|
||||||
sizing="medium"
|
|
||||||
background="none"
|
|
||||||
cardStyle="solid"
|
|
||||||
primaryButtonStyle="shadow"
|
|
||||||
secondaryButtonStyle="solid"
|
|
||||||
headingFontWeight="medium"
|
|
||||||
>
|
|
||||||
<ReactLenis root>
|
|
||||||
<div id="nav" data-section="nav">
|
|
||||||
<NavbarLayoutFloatingInline
|
|
||||||
navItems={[
|
|
||||||
{ name: "Overview", id: "/" },
|
|
||||||
{ name: "Menu", id: "/menu" },
|
|
||||||
{ name: "About", id: "/about" },
|
|
||||||
{ name: "Contact", id: "/#contact" },
|
|
||||||
]}
|
|
||||||
brandName="FEDERICO"
|
|
||||||
button={{ text: "Book Table", href: "/reservations" }}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</ReactLenis>
|
|
||||||
</ThemeProvider>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,54 +0,0 @@
|
|||||||
"use client";
|
|
||||||
|
|
||||||
import ReactLenis from "lenis/react";
|
|
||||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
|
||||||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
|
||||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
||||||
import { Instagram, Facebook, Linkedin } from "lucide-react";
|
|
||||||
|
|
||||||
export default function ContactPage() {
|
|
||||||
return (
|
|
||||||
<ThemeProvider
|
|
||||||
defaultButtonVariant="icon-arrow"
|
|
||||||
defaultTextAnimation="entrance-slide"
|
|
||||||
borderRadius="rounded"
|
|
||||||
contentWidth="medium"
|
|
||||||
sizing="medium"
|
|
||||||
background="none"
|
|
||||||
cardStyle="solid"
|
|
||||||
primaryButtonStyle="shadow"
|
|
||||||
secondaryButtonStyle="solid"
|
|
||||||
headingFontWeight="medium"
|
|
||||||
>
|
|
||||||
<ReactLenis root>
|
|
||||||
<NavbarLayoutFloatingInline
|
|
||||||
navItems={[
|
|
||||||
{ name: "Overview", id: "/" },
|
|
||||||
{ name: "Gallery", id: "/gallery" },
|
|
||||||
{ name: "Reservations", id: "/reservations" },
|
|
||||||
{ name: "Contact", id: "/contact" },
|
|
||||||
]}
|
|
||||||
brandName="FEDERICO"
|
|
||||||
button={{ text: "Book Table", href: "/reservations" }}
|
|
||||||
/>
|
|
||||||
<ContactCenter
|
|
||||||
tag="Contact"
|
|
||||||
title="Visit or Reach Out"
|
|
||||||
description="Locate us at 1 Rue du Lac de Constance, Tunis. We are open for your pleasure."
|
|
||||||
background={{ variant: "plain" }}
|
|
||||||
useInvertedBackground={false}
|
|
||||||
/>
|
|
||||||
<FooterCard
|
|
||||||
logoText="FEDERICO"
|
|
||||||
copyrightText="© 2025 FEDERICO Restaurant. 1 Rue du Lac de Constance, Tunis."
|
|
||||||
socialLinks={[
|
|
||||||
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
|
|
||||||
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
|
|
||||||
{ icon: Linkedin, href: "#", ariaLabel: "LinkedIn" },
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</ReactLenis>
|
|
||||||
</ThemeProvider>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -1,51 +0,0 @@
|
|||||||
"use client";
|
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
||||||
import FeatureCardSeven from "@/components/sections/feature/FeatureCardSeven";
|
|
||||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
|
||||||
|
|
||||||
export default function GalleryPage() {
|
|
||||||
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"
|
|
||||||
>
|
|
||||||
<div id="nav" data-section="nav">
|
|
||||||
<NavbarLayoutFloatingInline
|
|
||||||
navItems={[
|
|
||||||
{ name: "Home", id: "/" },
|
|
||||||
{ name: "Gallery", id: "/gallery" },
|
|
||||||
{ name: "Contact", id: "/contact" },
|
|
||||||
]}
|
|
||||||
brandName="Gallery"
|
|
||||||
button={{ text: "Get Started", href: "/contact" }}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<div id="features" data-section="features">
|
|
||||||
<FeatureCardSeven
|
|
||||||
title="Our Gallery"
|
|
||||||
description="Explore our featured collection."
|
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
features={[
|
|
||||||
{
|
|
||||||
title: "Feature One", description: "Description one.", imageSrc: "https://images.unsplash.com/photo-1506744038136-46273834b3fb", imageAlt: "Feature one"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Feature Two", description: "Description two.", imageSrc: "https://images.unsplash.com/photo-1470071459604-3b5ec3a7fe05", imageAlt: "Feature two"
|
|
||||||
}
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</ThemeProvider>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -6,26 +6,20 @@ import "@/lib/gsap-setup";
|
|||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||||
import Tag from "@/tag/Tag";
|
import Tag from "@/tag/Tag";
|
||||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||||
import { Open_Sans } from "next/font/google";
|
|
||||||
import { DM_Sans } from "next/font/google";
|
|
||||||
|
|
||||||
|
const halant = Halant({
|
||||||
|
variable: "--font-halant",
|
||||||
export const metadata: Metadata = { title: 'FEDERICO | Authentic Italian Dining in Tunis', description: 'Experience the finest Italian cuisine at FEDERICO in Tunis. Join us for an exquisite dining experience featuring authentic flavors, elegant ambiance, and premium service.' };
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const dmSans = DM_Sans({
|
|
||||||
variable: "--font-dm-sans",
|
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
|
weight: ["300", "400", "500", "600", "700"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const inter = Inter({
|
||||||
variable: "--font-inter",
|
variable: "--font-inter",
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
|
export const metadata: Metadata = { title: 'FEDERICO | Authentic Italian Dining in Tunis', description: 'Experience the finest Italian cuisine at FEDERICO in Tunis. Join us for an exquisite dining experience featuring authentic flavors, elegant ambiance, and premium service.' };
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: Readonly<{
|
||||||
@@ -34,7 +28,9 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en" suppressHydrationWarning>
|
||||||
<ServiceWrapper>
|
<ServiceWrapper>
|
||||||
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
|
<body
|
||||||
|
className={`${halant.variable} ${inter.variable} antialiased`}
|
||||||
|
>
|
||||||
<Tag />
|
<Tag />
|
||||||
{children}
|
{children}
|
||||||
<script
|
<script
|
||||||
|
|||||||
@@ -1,61 +0,0 @@
|
|||||||
"use client";
|
|
||||||
|
|
||||||
import ReactLenis from "lenis/react";
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
||||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
|
||||||
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
|
|
||||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
|
||||||
import { Instagram, Facebook, Linkedin } from "lucide-react";
|
|
||||||
|
|
||||||
export default function MenuPage() {
|
|
||||||
return (
|
|
||||||
<ThemeProvider
|
|
||||||
defaultButtonVariant="icon-arrow"
|
|
||||||
defaultTextAnimation="entrance-slide"
|
|
||||||
borderRadius="rounded"
|
|
||||||
contentWidth="medium"
|
|
||||||
sizing="medium"
|
|
||||||
background="none"
|
|
||||||
cardStyle="solid"
|
|
||||||
primaryButtonStyle="shadow"
|
|
||||||
secondaryButtonStyle="solid"
|
|
||||||
headingFontWeight="medium"
|
|
||||||
>
|
|
||||||
<ReactLenis root>
|
|
||||||
<NavbarLayoutFloatingInline
|
|
||||||
navItems={[
|
|
||||||
{ name: "Overview", id: "/" },
|
|
||||||
{ name: "Menu", id: "/menu" },
|
|
||||||
{ name: "About", id: "/about" },
|
|
||||||
{ name: "Contact", id: "/#contact" },
|
|
||||||
]}
|
|
||||||
brandName="FEDERICO"
|
|
||||||
button={{ text: "Book Table", href: "/reservations" }}
|
|
||||||
/>
|
|
||||||
<FeatureCardOne
|
|
||||||
className="py-20"
|
|
||||||
title="Our Menu"
|
|
||||||
description="Savor authentic Italian recipes made fresh daily."
|
|
||||||
gridVariant="three-columns-all-equal-width"
|
|
||||||
textboxLayout="default"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
features={[
|
|
||||||
{ title: "Antipasti", description: "Light starters featuring fresh bruschetta and caprese salad.", imageSrc: "http://img.b2bpic.net/free-photo/tasty-bruschetta-with-tomatoes-basil-wooden-table_23-2148184659.jpg" },
|
|
||||||
{ title: "Primi Piatti", description: "Signature handmade pasta dishes with authentic sauces.", imageSrc: "http://img.b2bpic.net/free-photo/delicious-penne-pasta-with-tomato-sauce-fresh-basil-grated-parmesan-cheese_84443-81547.jpg" },
|
|
||||||
{ title: "Secondi", description: "Premium seafood and meat preparations crafted with passion.", imageSrc: "http://img.b2bpic.net/free-photo/grilled-fish-with-vegetables-served-table_144627-24855.jpg" }
|
|
||||||
]}
|
|
||||||
animationType="slide-up"
|
|
||||||
/>
|
|
||||||
<FooterCard
|
|
||||||
logoText="FEDERICO"
|
|
||||||
copyrightText="© 2025 FEDERICO Restaurant. 1 Rue du Lac de Constance, Tunis."
|
|
||||||
socialLinks={[
|
|
||||||
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
|
|
||||||
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
|
|
||||||
{ icon: Linkedin, href: "#", ariaLabel: "LinkedIn" },
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</ReactLenis>
|
|
||||||
</ThemeProvider>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
133
src/app/page.tsx
133
src/app/page.tsx
@@ -1,17 +1,15 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import HeroCarouselLogo from "@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo";
|
import HeroLogo from "@/components/sections/hero/HeroLogo";
|
||||||
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
|
import SplitAbout from "@/components/sections/about/SplitAbout";
|
||||||
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
|
import FeatureCardSeven from "@/components/sections/feature/FeatureCardSeven";
|
||||||
import FeatureCardNine from "@/components/sections/feature/FeatureCardNine";
|
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
||||||
import FeatureCardMedia from "@/components/sections/feature/FeatureCardMedia";
|
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
||||||
import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive";
|
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||||
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
|
||||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
|
||||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import { Sparkles, Utensils, MapPin, Instagram, Facebook, Linkedin } from "lucide-react";
|
import { Utensils } from "lucide-react";
|
||||||
|
|
||||||
export default function FedericoRestaurantPage() {
|
export default function FedericoRestaurantPage() {
|
||||||
return (
|
return (
|
||||||
@@ -28,39 +26,92 @@ export default function FedericoRestaurantPage() {
|
|||||||
headingFontWeight="medium"
|
headingFontWeight="medium"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<NavbarLayoutFloatingInline
|
<div id="nav" data-section="nav">
|
||||||
navItems={[
|
<NavbarLayoutFloatingInline
|
||||||
{ name: "Overview", id: "/" },
|
navItems={[
|
||||||
{ name: "Gallery", id: "/gallery" },
|
{ name: "Overview", id: "overview" },
|
||||||
{ name: "Reservations", id: "/reservations" },
|
{ name: "Menu", id: "menu" },
|
||||||
{ name: "Contact", id: "/contact" },
|
{ name: "Reviews", id: "reviews" },
|
||||||
]}
|
{ name: "About", id: "about" },
|
||||||
brandName="FEDERICO"
|
{ name: "Contact", id: "contact" },
|
||||||
button={{ text: "Book Table", href: "/reservations" }}
|
]}
|
||||||
/>
|
brandName="FEDERICO"
|
||||||
<HeroCarouselLogo
|
button={{ text: "Reservations", href: "#contact" }}
|
||||||
logoText="FEDERICO"
|
/>
|
||||||
description="Authentic Italian flavors in the heart of Tunis. Join us for a refined culinary experience at Immeuble El Majd."
|
</div>
|
||||||
buttons={[
|
<div id="overview" data-section="overview">
|
||||||
{ text: "View Menu", href: "/" },
|
<HeroLogo
|
||||||
{ text: "Directions", href: "/contact" },
|
logoText="FEDERICO"
|
||||||
]}
|
description="Authentic Italian flavors in the heart of Tunis. Join us for a refined culinary experience at Immeuble El Majd."
|
||||||
slides={[
|
buttons={[
|
||||||
{ imageSrc: "http://img.b2bpic.net/free-photo/waiter-is-serving-dinner-two-pretty-friends-women-elegant-restaurant_8353-10575.jpg", imageAlt: "Elegant Italian restaurant dining" },
|
{ text: "View Menu", href: "#menu" },
|
||||||
{ imageSrc: "http://img.b2bpic.net/free-photo/delicious-penne-pasta-with-tomato-sauce-fresh-basil-grated-parmesan-cheese_84443-81547.jpg", imageAlt: "Gourmet pasta dish" },
|
{ text: "Directions", href: "#contact" },
|
||||||
{ imageSrc: "http://img.b2bpic.net/free-photo/glass-sparking-wine_1339-4221.jpg", imageAlt: "Wine pairing experience" },
|
]}
|
||||||
{ imageSrc: "http://img.b2bpic.net/free-photo/decorated-wedding-reception-venue-with-view-sea-through-windows_637285-1001.jpg", imageAlt: "Warm restaurant ambiance" },
|
imageSrc="http://img.b2bpic.net/free-photo/waiter-is-serving-dinner-two-pretty-friends-women-elegant-restaurant_8353-10575.jpg"
|
||||||
]}
|
imageAlt="Elegant Italian restaurant dining"
|
||||||
showDimOverlay={true}
|
showDimOverlay={true}
|
||||||
/>
|
/>
|
||||||
<FooterCard
|
</div>
|
||||||
logoText="FEDERICO"
|
<div id="about" data-section="about">
|
||||||
copyrightText="© 2025 FEDERICO Restaurant. 1 Rue du Lac de Constance, Tunis."
|
<SplitAbout
|
||||||
socialLinks={[
|
title="We craft authentic culinary masterpieces"
|
||||||
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
|
description="Using the finest Mediterranean ingredients for a unique experience."
|
||||||
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
|
buttons={[{ text: "Learn Our Story", href: "#about" }]}
|
||||||
{ icon: Linkedin, href: "#", ariaLabel: "LinkedIn" },
|
useInvertedBackground={false}
|
||||||
|
mediaAnimation="slide-up"
|
||||||
|
textboxLayout="inline-image"
|
||||||
|
bulletPoints={[
|
||||||
|
{ title: "Authentic Recipes", description: "Generations of Italian tradition." },
|
||||||
|
{ title: "Fresh Ingredients", description: "Sourced from the best local providers." }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div id="menu" data-section="menu">
|
||||||
|
<FeatureCardSeven
|
||||||
|
tag="Menu"
|
||||||
|
tagIcon={Utensils}
|
||||||
|
title="A Taste of Italy"
|
||||||
|
description="Traditional recipes prepared with modern elegance and fresh local produce."
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
features={[
|
||||||
|
{ title: "Handmade Pasta", description: "Fresh daily pasta crafted using authentic techniques.", imageSrc: "http://img.b2bpic.net/free-photo/pasta-near-eggs-flour_23-2147849810.jpg", imageAlt: "Pasta" },
|
||||||
|
{ title: "Wood-Fired Pizza", description: "Authentic thin-crust pizzas with premium Italian toppings.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-chef-baking-pizza-wood-fired-oven_52683-106696.jpg", imageAlt: "Pizza" },
|
||||||
|
{ title: "Exquisite Seafood", description: "Fresh catch of the day prepared with Mediterranean herbs.", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-mussels-white-sauce-with-tablecloth-cutlery_23-2148234931.jpg", imageAlt: "Seafood" }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div id="reviews" data-section="reviews">
|
||||||
|
<TestimonialCardFifteen
|
||||||
|
testimonial="Truly authentic flavors that transport you directly to Rome. Exceptional service and a beautiful setting."
|
||||||
|
rating={5}
|
||||||
|
author="Sami Ben Youssef"
|
||||||
|
avatars={[{ src: "http://img.b2bpic.net/free-photo/close-up-young-businesswoman_23-2149153828.jpg", alt: "Sami" }]}
|
||||||
|
ratingAnimation="slide-up"
|
||||||
|
avatarsAnimation="slide-up"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div id="contact" data-section="contact">
|
||||||
|
<ContactSplit
|
||||||
|
tag="Reservations"
|
||||||
|
title="Connect With Us"
|
||||||
|
description="Need a reservation or have an inquiry? Get in touch today."
|
||||||
|
background={{ variant: "plain" }}
|
||||||
|
useInvertedBackground={false}
|
||||||
|
imageSrc="http://img.b2bpic.net/free-photo/view-table-arrangement-by-wedding-planner_23-2150167204.jpg"
|
||||||
|
imageAlt="Contact Us"
|
||||||
|
mediaAnimation="slide-up"
|
||||||
|
mediaPosition="right"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<FooterSimple
|
||||||
|
columns={[
|
||||||
|
{ title: "Federico", items: [{ label: "Home", href: "/" }, { label: "Contact", href: "#contact" }] }
|
||||||
]}
|
]}
|
||||||
|
bottomLeftText="© 2025 FEDERICO Restaurant."
|
||||||
|
bottomRightText="1 Rue du Lac de Constance, Tunis."
|
||||||
/>
|
/>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
@@ -1,61 +0,0 @@
|
|||||||
"use client";
|
|
||||||
|
|
||||||
import ReactLenis from "lenis/react";
|
|
||||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
|
||||||
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
|
||||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
||||||
import { Instagram, Facebook, Linkedin } from "lucide-react";
|
|
||||||
|
|
||||||
export default function ReservationsPage() {
|
|
||||||
return (
|
|
||||||
<ThemeProvider
|
|
||||||
defaultButtonVariant="icon-arrow"
|
|
||||||
defaultTextAnimation="entrance-slide"
|
|
||||||
borderRadius="rounded"
|
|
||||||
contentWidth="medium"
|
|
||||||
sizing="medium"
|
|
||||||
background="none"
|
|
||||||
cardStyle="solid"
|
|
||||||
primaryButtonStyle="shadow"
|
|
||||||
secondaryButtonStyle="solid"
|
|
||||||
headingFontWeight="medium"
|
|
||||||
>
|
|
||||||
<ReactLenis root>
|
|
||||||
<NavbarLayoutFloatingInline
|
|
||||||
navItems={[
|
|
||||||
{ name: "Overview", id: "/" },
|
|
||||||
{ name: "Gallery", id: "/gallery" },
|
|
||||||
{ name: "Reservations", id: "/reservations" },
|
|
||||||
{ name: "Contact", id: "/contact" },
|
|
||||||
]}
|
|
||||||
brandName="FEDERICO"
|
|
||||||
button={{ text: "Book Table", href: "/reservations" }}
|
|
||||||
/>
|
|
||||||
<ContactSplitForm
|
|
||||||
title="Reserve Your Table"
|
|
||||||
description="Select your date, time, and party size to confirm your reservation."
|
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/view-table-arrangement-by-wedding-planner_23-2150167204.jpg"
|
|
||||||
imageAlt="Booking"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
inputs={[
|
|
||||||
{ name: "date", type: "date", placeholder: "Date" },
|
|
||||||
{ name: "time", type: "time", placeholder: "Time" },
|
|
||||||
{ name: "guests", type: "number", placeholder: "Guests" },
|
|
||||||
]}
|
|
||||||
textarea={{ name: "requests", placeholder: "Any special requests?" }}
|
|
||||||
buttonText="Submit Booking"
|
|
||||||
/>
|
|
||||||
<FooterCard
|
|
||||||
logoText="FEDERICO"
|
|
||||||
copyrightText="© 2025 FEDERICO Restaurant. 1 Rue du Lac de Constance, Tunis."
|
|
||||||
socialLinks={[
|
|
||||||
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
|
|
||||||
{ icon: Facebook, href: "#", ariaLabel: "Facebook" },
|
|
||||||
{ icon: Linkedin, href: "#", ariaLabel: "LinkedIn" },
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</ReactLenis>
|
|
||||||
</ThemeProvider>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-inter), sans-serif;
|
font-family: var(--font-inter-tight), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-dm-sans), sans-serif;
|
font-family: var(--font-inter-tight), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user