Update src/app/page.tsx
This commit is contained in:
314
src/app/page.tsx
314
src/app/page.tsx
@@ -12,7 +12,7 @@ import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||
import TextAbout from '@/components/sections/about/TextAbout';
|
||||
import { Award, Box, Car, Clock, CreditCard, FileText, Heart, Leaf, MapPin, Pizza, UserCheck, Users, Wine } from "lucide-react";
|
||||
import { Award, Bike, Box, Car, Clock, CreditCard, FileText, Heart, Leaf, MapPin, Pizza, UserCheck, Users, UtensilsCrossed, Wine } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -33,29 +33,17 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
name: "Home", id: "hero"},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "menu",
|
||||
},
|
||||
name: "Menu", id: "menu"},
|
||||
{
|
||||
name: "About Us",
|
||||
id: "about",
|
||||
},
|
||||
name: "About Us", id: "about"},
|
||||
{
|
||||
name: "Reviews",
|
||||
id: "testimonials",
|
||||
},
|
||||
name: "Reviews", id: "testimonials"},
|
||||
{
|
||||
name: "FAQs",
|
||||
id: "faq",
|
||||
},
|
||||
name: "FAQs", id: "faq"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
name: "Contact", id: "contact"},
|
||||
]}
|
||||
brandName="Il Carpaccio"
|
||||
/>
|
||||
@@ -64,77 +52,50 @@ export default function LandingPage() {
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplit
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
variant: "radial-gradient"}}
|
||||
title="Experience Authentic Italian Cuisine at Il Carpaccio"
|
||||
description="Located in Peißenberg, Il Carpaccio offers a delightful array of traditional Italian dishes, from fresh seafood to classic pizzas and pastas. Enjoy our warm ambiance or convenient takeaway and delivery options."
|
||||
tag="Peißenberg's Favorite"
|
||||
buttons={[
|
||||
{
|
||||
text: "View Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
text: "View Menu", href: "#menu"},
|
||||
{
|
||||
text: "Order Now",
|
||||
href: "#contact",
|
||||
},
|
||||
text: "Order Now", href: "#contact"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/italian-spaghetti-tomato-sauce-with-mint-leaves-top-inside-blue-bowl-plate_114579-1555.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/italian-spaghetti-tomato-sauce-with-mint-leaves-top-inside-blue-bowl-plate_114579-1555.jpg"
|
||||
imageAlt="A delectable Italian pasta dish"
|
||||
mediaAnimation="entrance-slide"
|
||||
mediaAnimation="slide-up"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-smiley-people-table_23-2149213367.jpg",
|
||||
alt: "Happy customer 1",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/close-up-smiley-people-table_23-2149213367.jpg", alt: "Happy customer 1"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/high-angle-friends-restaurant_23-2148395392.jpg",
|
||||
alt: "Happy customer 2",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/high-angle-friends-restaurant_23-2148395392.jpg", alt: "Happy customer 2"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/older-friends-eating-restaurant_23-2149316782.jpg",
|
||||
alt: "Happy customer 3",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/older-friends-eating-restaurant_23-2149316782.jpg", alt: "Happy customer 3"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/having-lunch-spacious-restaurant_52683-117480.jpg",
|
||||
alt: "Happy customer 4",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/having-lunch-spacious-restaurant_52683-117480.jpg", alt: "Happy customer 4"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-smiling-pretty-waitress_1098-15705.jpg",
|
||||
alt: "Happy customer 5",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/portrait-smiling-pretty-waitress_1098-15705.jpg", alt: "Happy customer 5"},
|
||||
]}
|
||||
avatarText="Loved by over 172 happy diners!"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Fresh Ingredients",
|
||||
icon: Leaf,
|
||||
type: "text-icon", text: "Fresh Ingredients", icon: Leaf,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Authentic Recipes",
|
||||
icon: FileText,
|
||||
type: "text-icon", text: "Authentic Recipes", icon: FileText,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Cozy Atmosphere",
|
||||
icon: Heart,
|
||||
type: "text-icon", text: "Cozy Atmosphere", icon: Heart,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Family-Owned",
|
||||
icon: Users,
|
||||
type: "text-icon", text: "Family-Owned", icon: Users,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Fast Delivery",
|
||||
icon: Car,
|
||||
type: "text-icon", text: "Fast Delivery", icon: Car,
|
||||
},
|
||||
{
|
||||
type: "text-icon",
|
||||
text: "Award-Winning",
|
||||
icon: Award,
|
||||
type: "text-icon", text: "Award-Winning", icon: Award,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -145,7 +106,6 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
tag="Our Heritage"
|
||||
title="About Il Carpaccio: A Taste of Italy in Peißenberg"
|
||||
description="With over 172 reviews and a 4.3-star rating, Il Carpaccio has been a beloved spot for authentic Italian dining. Our passion for quality ingredients and traditional recipes brings you the true flavors of Italy. We offer a cozy dine-in experience, convenient takeaway, and reliable delivery right to your door."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -153,81 +113,55 @@ export default function LandingPage() {
|
||||
<FeatureCardTen
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "Dine-in Experience",
|
||||
description: "Enjoy the authentic Italian dining experience in our welcoming restaurant with friendly service.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-friends-with-drinks-tacos_23-2149073435.jpg",
|
||||
imageAlt: "Cozy restaurant interior with tables",
|
||||
},
|
||||
title: "Dine-in Experience", description: "Enjoy the authentic Italian dining experience in our welcoming restaurant with friendly service.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-friends-with-drinks-tacos_23-2149073435.jpg", imageAlt: "Cozy restaurant interior with tables"},
|
||||
items: [
|
||||
{
|
||||
icon: UtensilsCrossed,
|
||||
text: "Authentic Ambiance",
|
||||
},
|
||||
text: "Authentic Ambiance"},
|
||||
{
|
||||
icon: UserCheck,
|
||||
text: "Friendly Service",
|
||||
},
|
||||
text: "Friendly Service"},
|
||||
{
|
||||
icon: Wine,
|
||||
text: "Beverage Selection",
|
||||
},
|
||||
text: "Beverage Selection"},
|
||||
],
|
||||
reverse: false,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/italian-spaghetti-tomato-sauce-with-mint-leaves-top-inside-blue-bowl-plate_114579-1555.jpg?_wi=2",
|
||||
imageAlt: "cozy restaurant interior table setting",
|
||||
},
|
||||
{
|
||||
title: "Convenient Takeaway",
|
||||
description: "Craving Italian at home? Pick up your favorite dishes fresh from our kitchen, prepared quickly for you.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delivery-woman-holding-pizza-boxes_114579-27733.jpg",
|
||||
imageAlt: "Takeaway pizza box being handed over",
|
||||
},
|
||||
title: "Convenient Takeaway", description: "Craving Italian at home? Pick up your favorite dishes fresh from our kitchen, prepared quickly for you.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delivery-woman-holding-pizza-boxes_114579-27733.jpg", imageAlt: "Takeaway pizza box being handed over"},
|
||||
items: [
|
||||
{
|
||||
icon: Pizza,
|
||||
text: "Hot & Fresh",
|
||||
},
|
||||
text: "Hot & Fresh"},
|
||||
{
|
||||
icon: Clock,
|
||||
text: "Quick Pickup",
|
||||
},
|
||||
text: "Quick Pickup"},
|
||||
{
|
||||
icon: Box,
|
||||
text: "Secure Packaging",
|
||||
},
|
||||
text: "Secure Packaging"},
|
||||
],
|
||||
reverse: true,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-adult-enjoying-virtual-date_23-2149328154.jpg",
|
||||
imageAlt: "cozy restaurant interior table setting",
|
||||
},
|
||||
{
|
||||
title: "Reliable Delivery",
|
||||
description: "Get our delicious pizzas and pastas delivered right to your doorstep, hot and ready for your enjoyment.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chinese-food-noodles-with-egg-yolk-salad-leaf_114579-1937.jpg?_wi=1",
|
||||
imageAlt: "Food delivery person on a bike",
|
||||
},
|
||||
title: "Reliable Delivery", description: "Get our delicious pizzas and pastas delivered right to your doorstep, hot and ready for your enjoyment.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chinese-food-noodles-with-egg-yolk-salad-leaf_114579-1937.jpg", imageAlt: "Food delivery person on a bike"},
|
||||
items: [
|
||||
{
|
||||
icon: Bike,
|
||||
text: "Fast Delivery",
|
||||
},
|
||||
text: "Fast Delivery"},
|
||||
{
|
||||
icon: MapPin,
|
||||
text: "Local Coverage",
|
||||
},
|
||||
text: "Local Coverage"},
|
||||
{
|
||||
icon: CreditCard,
|
||||
text: "Easy Payment",
|
||||
},
|
||||
text: "Easy Payment"},
|
||||
],
|
||||
reverse: false,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-fish-with-lemon-slices-garlic_140725-6641.jpg?_wi=1",
|
||||
imageAlt: "cozy restaurant interior table setting",
|
||||
},
|
||||
]}
|
||||
title="Our Service Commitments"
|
||||
@@ -240,49 +174,20 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
useInvertedBackground={true}
|
||||
animationType="slide-up"
|
||||
products={[
|
||||
{
|
||||
id: "thunfischsalat",
|
||||
name: "Thunfischsalat Mit Zwiebeln",
|
||||
price: "€12.50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/chinese-food-noodles-with-egg-yolk-salad-leaf_114579-1937.jpg?_wi=2",
|
||||
imageAlt: "Fresh tuna salad with onions",
|
||||
},
|
||||
id: "thunfischsalat", name: "Thunfischsalat Mit Zwiebeln", price: "€12.50", imageSrc: "http://img.b2bpic.net/free-photo/chinese-food-noodles-with-egg-yolk-salad-leaf_114579-1937.jpg", imageAlt: "Fresh tuna salad with onions"},
|
||||
{
|
||||
id: "tintenfischringe",
|
||||
name: "Tintenfischringe Vom Grill",
|
||||
price: "€18.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/fried-fish-with-lemon-slices-garlic_140725-6641.jpg?_wi=2",
|
||||
imageAlt: "Grilled calamari rings",
|
||||
},
|
||||
id: "tintenfischringe", name: "Tintenfischringe Vom Grill", price: "€18.00", imageSrc: "http://img.b2bpic.net/free-photo/fried-fish-with-lemon-slices-garlic_140725-6641.jpg", imageAlt: "Grilled calamari rings"},
|
||||
{
|
||||
id: "pizza-quattro",
|
||||
name: "Pizza Quattro Formaggi",
|
||||
price: "€14.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-pizza-caesar_140725-12440.jpg",
|
||||
imageAlt: "Four cheese pizza",
|
||||
},
|
||||
id: "pizza-quattro", name: "Pizza Quattro Formaggi", price: "€14.00", imageSrc: "http://img.b2bpic.net/free-photo/top-view-pizza-caesar_140725-12440.jpg", imageAlt: "Four cheese pizza"},
|
||||
{
|
||||
id: "rigatoni",
|
||||
name: "Rigatoni al Forno",
|
||||
price: "€13.50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/penne-pasta-with-pesto-sauce-zucchini-green-peas-basil-italian-food-top-view-flat-lay_2829-19578.jpg",
|
||||
imageAlt: "Baked rigatoni pasta",
|
||||
},
|
||||
id: "rigatoni", name: "Rigatoni al Forno", price: "€13.50", imageSrc: "http://img.b2bpic.net/free-photo/penne-pasta-with-pesto-sauce-zucchini-green-peas-basil-italian-food-top-view-flat-lay_2829-19578.jpg", imageAlt: "Baked rigatoni pasta"},
|
||||
{
|
||||
id: "pizza-margherita",
|
||||
name: "Pizza Margherita",
|
||||
price: "€11.00",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-fresh-pizza-with-mozzarella-cheese-tomatoes-basil_181624-58097.jpg",
|
||||
imageAlt: "Classic Margherita pizza",
|
||||
},
|
||||
id: "pizza-margherita", name: "Pizza Margherita", price: "€11.00", imageSrc: "http://img.b2bpic.net/free-photo/closeup-fresh-pizza-with-mozzarella-cheese-tomatoes-basil_181624-58097.jpg", imageAlt: "Classic Margherita pizza"},
|
||||
{
|
||||
id: "spaghetti-carbonara",
|
||||
name: "Spaghetti Carbonara",
|
||||
price: "€14.50",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/spaghetti-carbonara_74190-4716.jpg",
|
||||
imageAlt: "Creamy spaghetti carbonara",
|
||||
},
|
||||
id: "spaghetti-carbonara", name: "Spaghetti Carbonara", price: "€14.50", imageSrc: "http://img.b2bpic.net/free-photo/spaghetti-carbonara_74190-4716.jpg", imageAlt: "Creamy spaghetti carbonara"},
|
||||
]}
|
||||
title="Our Exquisite Menu"
|
||||
description="Discover a delightful range of Italian classics, prepared with the freshest ingredients and authentic recipes, perfect for any taste."
|
||||
@@ -293,55 +198,20 @@ export default function LandingPage() {
|
||||
<TestimonialCardSix
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "John Stedman",
|
||||
handle: "@johnstedman",
|
||||
testimonial: "Interesting menu. Friendly and prompt service. A truly authentic experience!",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/family-gathering-with-gay-partners_23-2151077662.jpg",
|
||||
imageAlt: "John Stedman",
|
||||
},
|
||||
id: "1", name: "John Stedman", handle: "@johnstedman", testimonial: "Interesting menu. Friendly and prompt service. A truly authentic experience!", imageSrc: "http://img.b2bpic.net/free-photo/family-gathering-with-gay-partners_23-2151077662.jpg", imageAlt: "John Stedman"},
|
||||
{
|
||||
id: "2",
|
||||
name: "M Ak",
|
||||
handle: "@m_ak_localguide",
|
||||
testimonial: "Top. Always a pleasure to dine here. The food is consistently excellent and the atmosphere is welcoming.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-asian-man-friends-reunion_23-2149244687.jpg",
|
||||
imageAlt: "M Ak",
|
||||
},
|
||||
id: "2", name: "M Ak", handle: "@m_ak_localguide", testimonial: "Top. Always a pleasure to dine here. The food is consistently excellent and the atmosphere is welcoming.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-asian-man-friends-reunion_23-2149244687.jpg", imageAlt: "M Ak"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Birane Wane",
|
||||
handle: "@biranewane",
|
||||
testimonial: "Formidable! Fantastic food and wonderful staff. Highly recommend for anyone looking for great Italian.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiley-man-posing-cv-front-view_23-2149927616.jpg",
|
||||
imageAlt: "Birane Wane",
|
||||
},
|
||||
id: "3", name: "Birane Wane", handle: "@biranewane", testimonial: "Formidable! Fantastic food and wonderful staff. Highly recommend for anyone looking for great Italian.", imageSrc: "http://img.b2bpic.net/free-photo/smiley-man-posing-cv-front-view_23-2149927616.jpg", imageAlt: "Birane Wane"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Sophie Müller",
|
||||
handle: "@sophie_eats",
|
||||
testimonial: "Delicious pasta and amazing pizza! This place never disappoints. A must-visit in Peißenberg.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-eating-delicious-tiramisu-cafe_1303-25271.jpg",
|
||||
imageAlt: "Sophie Müller",
|
||||
},
|
||||
id: "4", name: "Sophie Müller", handle: "@sophie_eats", testimonial: "Delicious pasta and amazing pizza! This place never disappoints. A must-visit in Peißenberg.", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-eating-delicious-tiramisu-cafe_1303-25271.jpg", imageAlt: "Sophie Müller"},
|
||||
{
|
||||
id: "5",
|
||||
name: "David Schmidt",
|
||||
handle: "@schmidt_d",
|
||||
testimonial: "The best Italian food outside of Italy. The service is impeccable, and the quality is always top-notch.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-conversating-restaurant_23-2148006704.jpg",
|
||||
imageAlt: "David Schmidt",
|
||||
},
|
||||
id: "5", name: "David Schmidt", handle: "@schmidt_d", testimonial: "The best Italian food outside of Italy. The service is impeccable, and the quality is always top-notch.", imageSrc: "http://img.b2bpic.net/free-photo/friends-eating-conversating-restaurant_23-2148006704.jpg", imageAlt: "David Schmidt"},
|
||||
{
|
||||
id: "6",
|
||||
name: "Anna Huber",
|
||||
handle: "@huber_anna",
|
||||
testimonial: "Lovely ambiance and incredibly tasty dishes. My go-to spot for a cozy dinner or a quick lunch.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-drinking-wine-talking-table_23-2147770761.jpg",
|
||||
imageAlt: "Anna Huber",
|
||||
},
|
||||
id: "6", name: "Anna Huber", handle: "@huber_anna", testimonial: "Lovely ambiance and incredibly tasty dishes. My go-to spot for a cozy dinner or a quick lunch.", imageSrc: "http://img.b2bpic.net/free-photo/couple-drinking-wine-talking-table_23-2147770761.jpg", imageAlt: "Anna Huber"},
|
||||
]}
|
||||
title="What Our Guests Say"
|
||||
description="Hear from our valued customers about their experiences at Il Carpaccio. We're proud of the smiles and satisfaction we bring."
|
||||
@@ -353,14 +223,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
names={[
|
||||
"Local Families",
|
||||
"Food Enthusiasts",
|
||||
"Community Partners",
|
||||
"Happy Customers",
|
||||
"Peißenberg Residents",
|
||||
"Food Bloggers",
|
||||
"Local Businesses",
|
||||
]}
|
||||
"Local Families", "Food Enthusiasts", "Community Partners", "Happy Customers", "Peißenberg Residents", "Food Bloggers", "Local Businesses"]}
|
||||
title="Trusted by Our Community"
|
||||
description="We are proud to be a local favorite, delivering authentic Italian flavors and excellent service to our cherished customers in Peißenberg."
|
||||
/>
|
||||
@@ -372,34 +235,19 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "1",
|
||||
title: "What are your opening hours?",
|
||||
content: "Il Carpaccio is open daily from 11:30 AM to 2:30 PM for lunch and from 5:00 PM to 11:00 PM for dinner, closing at 11 PM. We are closed on Mondays.",
|
||||
},
|
||||
id: "1", title: "What are your opening hours?", content: "Il Carpaccio is open daily from 11:30 AM to 2:30 PM for lunch and from 5:00 PM to 11:00 PM for dinner, closing at 11 PM. We are closed on Mondays."},
|
||||
{
|
||||
id: "2",
|
||||
title: "Do you offer vegetarian or vegan options?",
|
||||
content: "Yes, our menu includes a variety of vegetarian dishes, and we are happy to accommodate vegan requests where possible. Please inform your server of any dietary needs.",
|
||||
},
|
||||
id: "2", title: "Do you offer vegetarian or vegan options?", content: "Yes, our menu includes a variety of vegetarian dishes, and we are happy to accommodate vegan requests where possible. Please inform your server of any dietary needs."},
|
||||
{
|
||||
id: "3",
|
||||
title: "How can I make a reservation? ",
|
||||
content: "You can make a reservation by calling us directly at 08803 5149 during our opening hours, or by visiting us in person. We recommend booking in advance, especially on weekends.",
|
||||
},
|
||||
id: "3", title: "How can I make a reservation? ", content: "You can make a reservation by calling us directly at 08803 5149 during our opening hours, or by visiting us in person. We recommend booking in advance, especially on weekends."},
|
||||
{
|
||||
id: "4",
|
||||
title: "Do you cater for special events or large groups?",
|
||||
content: "Yes, we can accommodate special events and large group bookings. Please contact us directly to discuss your requirements and how we can make your event memorable.",
|
||||
},
|
||||
id: "4", title: "Do you cater for special events or large groups?", content: "Yes, we can accommodate special events and large group bookings. Please contact us directly to discuss your requirements and how we can make your event memorable."},
|
||||
{
|
||||
id: "5",
|
||||
title: "Is parking available at the restaurant?",
|
||||
content: "Yes, there is ample parking available for our guests conveniently located near the restaurant at Sonnenstraße 22, 82380 Peißenberg.",
|
||||
},
|
||||
id: "5", title: "Is parking available at the restaurant?", content: "Yes, there is ample parking available for our guests conveniently located near the restaurant at Sonnenstraße 22, 82380 Peißenberg."},
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Find quick answers to common questions about our restaurant, menu, services, and how to enjoy the Il Carpaccio experience."
|
||||
faqsAnimation="entrance-slide"
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -407,14 +255,13 @@ export default function LandingPage() {
|
||||
<ContactSplit
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
tag="Visit or Contact Us"
|
||||
title="Come Experience Il Carpaccio"
|
||||
description="We look forward to welcoming you to our restaurant or delivering a taste of Italy to your home. Reach out to us for reservations or inquiries. Call us at 08803 5149 or visit us at Sonnenstraße 22, 82380 Peißenberg."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/tables-chairs-restaurant_1339-2606.jpg"
|
||||
imageAlt="Exterior of Il Carpaccio restaurant"
|
||||
mediaAnimation="entrance-slide"
|
||||
mediaAnimation="slide-up"
|
||||
inputPlaceholder="Your message"
|
||||
buttonText="Send Message"
|
||||
termsText="By sending a message, you agree to our privacy policy."
|
||||
@@ -426,46 +273,29 @@ export default function LandingPage() {
|
||||
logoText="Il Carpaccio"
|
||||
columns={[
|
||||
{
|
||||
title: "About",
|
||||
items: [
|
||||
title: "About", items: [
|
||||
{
|
||||
label: "Our Story",
|
||||
href: "#about",
|
||||
},
|
||||
label: "Our Story", href: "#about"},
|
||||
{
|
||||
label: "Reviews",
|
||||
href: "#testimonials",
|
||||
},
|
||||
label: "Reviews", href: "#testimonials"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Menu",
|
||||
items: [
|
||||
title: "Menu", items: [
|
||||
{
|
||||
label: "Full Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
label: "Full Menu", href: "#menu"},
|
||||
{
|
||||
label: "Daily Specials",
|
||||
href: "#",
|
||||
},
|
||||
label: "Daily Specials", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
title: "Support", items: [
|
||||
{
|
||||
label: "FAQs",
|
||||
href: "#faq",
|
||||
},
|
||||
label: "FAQs", href: "#faq"},
|
||||
{
|
||||
label: "Contact Us",
|
||||
href: "#contact",
|
||||
},
|
||||
label: "Contact Us", href: "#contact"},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
label: "Privacy Policy", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user