2 Commits

Author SHA1 Message Date
0c3404f7c9 Update src/app/page.tsx 2026-05-20 14:54:05 +00:00
6147c7864e Merge version_3 into main
Merge version_3 into main
2026-05-20 14:49:18 +00:00

View File

@@ -11,7 +11,7 @@ import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleAp
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen';
import { Heart } from "lucide-react";
import { Heart, MapPin } from "lucide-react";
export default function LandingPage() {
return (
@@ -35,6 +35,7 @@ export default function LandingPage() {
{ name: "About", id: "about" },
{ name: "Menu", id: "menu" },
{ name: "Testimonials", id: "testimonials" },
{ name: "Location", id: "contact" },
{ name: "Contact", id: "contact" },
]}
brandName="Dar Tresor Fes"
@@ -131,7 +132,7 @@ export default function LandingPage() {
faqs={[
{ id: "q1", title: "Do I need a reservation?", content: "Yes, we highly recommend booking in advance, especially during the evenings." },
{ id: "q2", title: "Are you vegetarian-friendly?", content: "Absolutely! We have a variety of delicious vegetarian and vegan options." },
{ id: "q3", title: "Where are you located?", content: "We are centrally located in the heart of the Medina." },
{ id: "q3", title: "Where are you located?", content: "We are located in the heart of the Medina, Fes el Bali, near the Bab Boujloud gate." },
]}
title="Common Questions"
description="Everything you need to know about your dining visit."
@@ -143,11 +144,12 @@ export default function LandingPage() {
<ContactCTA
useInvertedBackground={true}
background={{ variant: "sparkles-gradient" }}
tag="Contact"
title="Reserve Your Table"
description="We look forward to welcoming you to our table. Reach out to secure your spot today. Call us at 0639373204."
tag="Contact & Location"
title="Find & Visit Us"
description="We are located in the historic heart of the Fes medina. We look forward to welcoming you to our table. Call us at 0639373204."
buttons={[
{ text: "Book Your Table Now", href: "mailto:hello@dartresorfes.com" },
{ text: "Get Directions", href: "https://maps.google.com/?q=Fes+Medina" },
{ text: "Book Your Table", href: "mailto:hello@dartresorfes.com" },
]}
/>
</div>
@@ -162,6 +164,7 @@ export default function LandingPage() {
{ label: "Menu", href: "#menu" },
] },
{ title: "Info", items: [
{ label: "Location", href: "#contact" },
{ label: "Reservations", href: "#contact" },
{ label: "Privacy", href: "#" },
] },
@@ -171,4 +174,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}