Merge version_2_1781785271757 into main #1
@@ -1,204 +1,38 @@
|
||||
import AboutText from '@/components/sections/about/AboutText';
|
||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import FeaturesDetailedCards from '@/components/sections/features/FeaturesDetailedCards';
|
||||
import HeroTiltedCards from '@/components/sections/hero/HeroTiltedCards';
|
||||
import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards';
|
||||
import TestimonialMarqueeCards from '@/components/sections/testimonial/TestimonialMarqueeCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
// AUTO-GENERATED shell by per-section-migrate.
|
||||
// Section bodies live in ./<PageBase>/sections/<X>.tsx. Edit the section
|
||||
// files directly. Non-block content (wrappers, non-inlinable sections) is
|
||||
// preserved inline; extracted section blocks become <XSection/> refs.
|
||||
|
||||
export default function HomePage() {
|
||||
import React from 'react';
|
||||
import HeroSection from './HomePage/sections/Hero';
|
||||
import AboutSection from './HomePage/sections/About';
|
||||
import FeaturesSection from './HomePage/sections/Features';
|
||||
import MetricsSection from './HomePage/sections/Metrics';
|
||||
import TestimonialsSection from './HomePage/sections/Testimonials';
|
||||
import FaqSection from './HomePage/sections/Faq';
|
||||
import ContactSection from './HomePage/sections/Contact';
|
||||
|
||||
|
||||
|
||||
{/* webild-stub @2026-06-18T12:22:23.597Z: Add a location or map section to improve trust and local SEO, as guests need to know where the restaurant is physically located. */}
|
||||
|
||||
import LocationSection from './HomePage/sections/Location';export default function HomePage(): React.JSX.Element {
|
||||
return (
|
||||
<>
|
||||
<div id="hero" data-section="hero">
|
||||
<SectionErrorBoundary name="hero">
|
||||
<HeroTiltedCards
|
||||
tag="Est. 2024"
|
||||
title="A Symphony of Flavors"
|
||||
description="Experience curated seasonal ingredients in an intimate, warm setting designed for those who appreciate the finer things."
|
||||
primaryButton={{
|
||||
text: "Reserve Now",
|
||||
href: "#contact",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "View Menu",
|
||||
href: "#features",
|
||||
}}
|
||||
items={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-dark-square-plates-with-golden-fork-knife-dark-desk-cutlery-restaurant-lunch-color-plate-tea-drink_179666-19330.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-holds-plate-with-gurza-side-view_141793-4738.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-chef-preparing-food-kitchen_23-2149727967.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wedding-table-serving-wedding-decor_8353-8510.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-traffic-light-night_23-2148055612.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<>
|
||||
<HeroSection />
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<SectionErrorBoundary name="about">
|
||||
<AboutText
|
||||
title="At AURA, we believe that the best stories are shared around a table. Every dish is a testament to our commitment to local farmers and sustainable practices."
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<AboutSection />
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<SectionErrorBoundary name="features">
|
||||
<FeaturesDetailedCards
|
||||
tag="Signature Dishes"
|
||||
title="Our Culinary Journey"
|
||||
description="Discover our rotating seasonal menu crafted with passion."
|
||||
items={[
|
||||
{
|
||||
title: "Handmade Pasta",
|
||||
description: "Freshly made daily with organic heirloom wheat.",
|
||||
tags: [
|
||||
"Signature",
|
||||
"Pasta",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-chef-plating-meal_23-2148794096.jpg",
|
||||
},
|
||||
{
|
||||
title: "Coastal Catch",
|
||||
description: "Sourced directly from sustainable small-scale fisheries.",
|
||||
tags: [
|
||||
"Seafood",
|
||||
"Local",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tiger-prawn-with-spicy-sauce-with-nice-decoration_1258-84823.jpg",
|
||||
},
|
||||
{
|
||||
title: "Deconstructed Tart",
|
||||
description: "A seasonal blend of local berries and cream.",
|
||||
tags: [
|
||||
"Dessert",
|
||||
"Artisan",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/arrangement-dried-fruit-marmalade-cardboard-tray_23-2148425597.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<FeaturesSection />
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<SectionErrorBoundary name="metrics">
|
||||
<MetricsSimpleCards
|
||||
tag="Experience"
|
||||
title="Quality at Scale"
|
||||
description="Numbers behind the atmosphere."
|
||||
metrics={[
|
||||
{
|
||||
value: "12+",
|
||||
description: "Seasonal Menu Rotations",
|
||||
},
|
||||
{
|
||||
value: "250+",
|
||||
description: "Local Farm Partners",
|
||||
},
|
||||
{
|
||||
value: "1500+",
|
||||
description: "Satisfied Diners Monthly",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<MetricsSection />
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<SectionErrorBoundary name="testimonials">
|
||||
<TestimonialMarqueeCards
|
||||
tag="Reviews"
|
||||
title="What Guests Are Saying"
|
||||
description="Authentic experiences from our beloved patrons."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Sophia L.",
|
||||
role: "Food Critic",
|
||||
quote: "The most refined dining experience in the city. Exquisite.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/thin-tanned-woman-brown-bra-stylish-denim-shorts-enjoys-taste-waffle-with-cream-peanuts-maple-syrup_197531-18189.jpg",
|
||||
},
|
||||
{
|
||||
name: "James D.",
|
||||
role: "Local Regular",
|
||||
quote: "A true sanctuary of taste. Simply incredible.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/restaurant-chilling-out-classy-lifestyle-reserved-concept_53876-15896.jpg",
|
||||
},
|
||||
{
|
||||
name: "Elena R.",
|
||||
role: "Travel Blogger",
|
||||
quote: "The atmosphere is unmatched. Highly recommend.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/women-table-with-food_23-2147681106.jpg",
|
||||
},
|
||||
{
|
||||
name: "Marcus W.",
|
||||
role: "Entrepreneur",
|
||||
quote: "Perfect for business dinners. Elegance redefined.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-man-talking-his-girlfriend-lunch-time-restaurant_637285-1937.jpg",
|
||||
},
|
||||
{
|
||||
name: "Julia M.",
|
||||
role: "Artist",
|
||||
quote: "A feast for the eyes and the soul. Beautiful.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/women-holding-glasses-with-lemonade-table-with-different-dishes_141793-3258.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<TestimonialsSection />
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<SectionErrorBoundary name="faq">
|
||||
<FaqSplitMedia
|
||||
tag="Support"
|
||||
title="Common Questions"
|
||||
description="Frequently asked questions about reservations and dining."
|
||||
items={[
|
||||
{
|
||||
question: "Do I need a reservation?",
|
||||
answer: "Yes, we highly recommend booking in advance to ensure availability.",
|
||||
},
|
||||
{
|
||||
question: "Are dietary restrictions accommodated?",
|
||||
answer: "Absolutely. Please inform our staff when booking or arriving.",
|
||||
},
|
||||
{
|
||||
question: "Is the restaurant accessible?",
|
||||
answer: "Yes, our premises are fully accessible for all guests.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-male-cook-wearing-chef-uniform-holding-tomato-isolated-pink-wall_141793-36768.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<FaqSection />
|
||||
<LocationSection />
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<SectionErrorBoundary name="contact">
|
||||
<ContactCta
|
||||
tag="Reservation"
|
||||
text="Ready to experience AURA? Reserve your table for an evening to remember."
|
||||
primaryButton={{
|
||||
text: "Book Now",
|
||||
href: "#",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Call Us",
|
||||
href: "tel:+1234567890",
|
||||
}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<ContactSection />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
18
src/pages/HomePage/sections/About.tsx
Normal file
18
src/pages/HomePage/sections/About.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "about" section.
|
||||
|
||||
import React from 'react';
|
||||
import AboutText from '@/components/sections/about/AboutText';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function AboutSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="about" data-section="about">
|
||||
<SectionErrorBoundary name="about">
|
||||
<AboutText
|
||||
title="At AURA, we believe that the best stories are shared around a table. Every dish is a testament to our commitment to local farmers and sustainable practices."
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
27
src/pages/HomePage/sections/Contact.tsx
Normal file
27
src/pages/HomePage/sections/Contact.tsx
Normal file
@@ -0,0 +1,27 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "contact" section.
|
||||
|
||||
import React from 'react';
|
||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function ContactSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="contact" data-section="contact">
|
||||
<SectionErrorBoundary name="contact">
|
||||
<ContactCta
|
||||
tag="Reservation"
|
||||
text="Ready to experience AURA? Reserve your table for an evening to remember."
|
||||
primaryButton={{
|
||||
text: "Book Now",
|
||||
href: "#",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Call Us",
|
||||
href: "tel:+1234567890",
|
||||
}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
35
src/pages/HomePage/sections/Faq.tsx
Normal file
35
src/pages/HomePage/sections/Faq.tsx
Normal file
@@ -0,0 +1,35 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "faq" section.
|
||||
|
||||
import React from 'react';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function FaqSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="faq" data-section="faq">
|
||||
<SectionErrorBoundary name="faq">
|
||||
<FaqSplitMedia
|
||||
tag="Support"
|
||||
title="Common Questions"
|
||||
description="Frequently asked questions about reservations and dining."
|
||||
items={[
|
||||
{
|
||||
question: "Do I need a reservation?",
|
||||
answer: "Yes, we highly recommend booking in advance to ensure availability.",
|
||||
},
|
||||
{
|
||||
question: "Are dietary restrictions accommodated?",
|
||||
answer: "Absolutely. Please inform our staff when booking or arriving.",
|
||||
},
|
||||
{
|
||||
question: "Is the restaurant accessible?",
|
||||
answer: "Yes, our premises are fully accessible for all guests.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/young-male-cook-wearing-chef-uniform-holding-tomato-isolated-pink-wall_141793-36768.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
49
src/pages/HomePage/sections/Features.tsx
Normal file
49
src/pages/HomePage/sections/Features.tsx
Normal file
@@ -0,0 +1,49 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "features" section.
|
||||
|
||||
import React from 'react';
|
||||
import FeaturesDetailedCards from '@/components/sections/features/FeaturesDetailedCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function FeaturesSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="features" data-section="features">
|
||||
<SectionErrorBoundary name="features">
|
||||
<FeaturesDetailedCards
|
||||
tag="Signature Dishes"
|
||||
title="Our Culinary Journey"
|
||||
description="Discover our rotating seasonal menu crafted with passion."
|
||||
items={[
|
||||
{
|
||||
title: "Handmade Pasta",
|
||||
description: "Freshly made daily with organic heirloom wheat.",
|
||||
tags: [
|
||||
"Signature",
|
||||
"Pasta",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-chef-plating-meal_23-2148794096.jpg",
|
||||
},
|
||||
{
|
||||
title: "Coastal Catch",
|
||||
description: "Sourced directly from sustainable small-scale fisheries.",
|
||||
tags: [
|
||||
"Seafood",
|
||||
"Local",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tiger-prawn-with-spicy-sauce-with-nice-decoration_1258-84823.jpg",
|
||||
},
|
||||
{
|
||||
title: "Deconstructed Tart",
|
||||
description: "A seasonal blend of local berries and cream.",
|
||||
tags: [
|
||||
"Dessert",
|
||||
"Artisan",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/arrangement-dried-fruit-marmalade-cardboard-tray_23-2148425597.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
45
src/pages/HomePage/sections/Hero.tsx
Normal file
45
src/pages/HomePage/sections/Hero.tsx
Normal file
@@ -0,0 +1,45 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "hero" section.
|
||||
|
||||
import React from 'react';
|
||||
import HeroTiltedCards from '@/components/sections/hero/HeroTiltedCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function HeroSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="hero" data-section="hero">
|
||||
<SectionErrorBoundary name="hero">
|
||||
<HeroTiltedCards
|
||||
tag="Est. 2024"
|
||||
title="A Symphony of Flavors"
|
||||
description="Experience curated seasonal ingredients in an intimate, warm setting designed for those who appreciate the finer things."
|
||||
primaryButton={{
|
||||
text: "Reserve Now",
|
||||
href: "#contact",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "View Menu",
|
||||
href: "#features",
|
||||
}}
|
||||
items={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-dark-square-plates-with-golden-fork-knife-dark-desk-cutlery-restaurant-lunch-color-plate-tea-drink_179666-19330.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-holds-plate-with-gurza-side-view_141793-4738.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/professional-chef-preparing-food-kitchen_23-2149727967.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/wedding-table-serving-wedding-decor_8353-8510.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-traffic-light-night_23-2148055612.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
88
src/pages/HomePage/sections/Location.tsx
Normal file
88
src/pages/HomePage/sections/Location.tsx
Normal file
@@ -0,0 +1,88 @@
|
||||
import { motion } from "motion/react";
|
||||
import TextAnimation from "@/components/ui/TextAnimation";
|
||||
import ScrollReveal from "@/components/ui/ScrollReveal";
|
||||
import Card from "@/components/ui/Card";
|
||||
import Tag from "@/components/ui/Tag";
|
||||
import { MapPin, Clock, Phone } from "lucide-react";
|
||||
|
||||
export default function LocationSection() {
|
||||
return (
|
||||
<section className="relative w-full py-24 bg-background" data-webild-section="location" id="location">
|
||||
<div className="max-w-content-width mx-auto px-4 md:px-8">
|
||||
<div className="grid grid-cols-1 lg:grid-cols-2 gap-12 lg:gap-20 items-center">
|
||||
<ScrollReveal variant="slide-up" className="flex flex-col items-start">
|
||||
<Tag text="Location" className="mb-6" />
|
||||
<TextAnimation
|
||||
text="Find Our Table"
|
||||
variant="slide-up"
|
||||
tag="h2"
|
||||
className="text-4xl md:text-5xl font-bold text-foreground mb-6"
|
||||
gradientText={false}
|
||||
/>
|
||||
<p className="text-lg text-muted-foreground mb-10 max-w-md">
|
||||
Nestled in the historic district, our doors are open for you to experience artisanal dining in a warm, organic setting.
|
||||
</p>
|
||||
|
||||
<div className="space-y-8 w-full">
|
||||
<div className="flex items-start gap-4">
|
||||
<div className="p-3 rounded-full bg-card text-foreground shadow-sm">
|
||||
<MapPin className="w-6 h-6" />
|
||||
</div>
|
||||
<div>
|
||||
<h3 className="text-xl font-semibold text-foreground mb-2">Address</h3>
|
||||
<p className="text-muted-foreground leading-relaxed">
|
||||
123 Culinary Avenue<br />
|
||||
Gastronomy District, GD 10012
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="flex items-start gap-4">
|
||||
<div className="p-3 rounded-full bg-card text-foreground shadow-sm">
|
||||
<Clock className="w-6 h-6" />
|
||||
</div>
|
||||
<div>
|
||||
<h3 className="text-xl font-semibold text-foreground mb-2">Opening Hours</h3>
|
||||
<p className="text-muted-foreground leading-relaxed">
|
||||
Mon - Thu: 5:00 PM - 10:00 PM<br />
|
||||
Fri - Sun: 12:00 PM - 11:00 PM
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div className="flex items-start gap-4">
|
||||
<div className="p-3 rounded-full bg-card text-foreground shadow-sm">
|
||||
<Phone className="w-6 h-6" />
|
||||
</div>
|
||||
<div>
|
||||
<h3 className="text-xl font-semibold text-foreground mb-2">Contact</h3>
|
||||
<p className="text-muted-foreground leading-relaxed">
|
||||
+1 (555) 123-4567<br />
|
||||
reservations@artisanal.com
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</ScrollReveal>
|
||||
|
||||
<ScrollReveal variant="fade-blur" delay={0.2} className="w-full h-full min-h-[400px] lg:min-h-[600px]">
|
||||
<Card className="w-full h-full overflow-hidden p-2 rounded-3xl border border-border/50 bg-card shadow-sm">
|
||||
<div className="relative w-full h-full rounded-2xl overflow-hidden bg-muted min-h-[400px] lg:min-h-[580px]">
|
||||
<iframe
|
||||
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3022.987308322684!2d-74.00164028459418!3d40.74033787932881!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c259bf5c1654f3%3A0xc80f9cfce5383d5d!2sChelsea%20Market!5e0!3m2!1sen!2sus!4v1625000000000!5m2!1sen!2sus"
|
||||
width="100%"
|
||||
height="100%"
|
||||
style={{ border: 0, position: 'absolute', top: 0, left: 0 }}
|
||||
allowFullScreen={false}
|
||||
loading="lazy"
|
||||
referrerPolicy="no-referrer-when-downgrade"
|
||||
className="grayscale contrast-75 opacity-90 hover:grayscale-0 hover:opacity-100 transition-all duration-700"
|
||||
></iframe>
|
||||
</div>
|
||||
</Card>
|
||||
</ScrollReveal>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
34
src/pages/HomePage/sections/Metrics.tsx
Normal file
34
src/pages/HomePage/sections/Metrics.tsx
Normal file
@@ -0,0 +1,34 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "metrics" section.
|
||||
|
||||
import React from 'react';
|
||||
import MetricsSimpleCards from '@/components/sections/metrics/MetricsSimpleCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function MetricsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="metrics" data-section="metrics">
|
||||
<SectionErrorBoundary name="metrics">
|
||||
<MetricsSimpleCards
|
||||
tag="Experience"
|
||||
title="Quality at Scale"
|
||||
description="Numbers behind the atmosphere."
|
||||
metrics={[
|
||||
{
|
||||
value: "12+",
|
||||
description: "Seasonal Menu Rotations",
|
||||
},
|
||||
{
|
||||
value: "250+",
|
||||
description: "Local Farm Partners",
|
||||
},
|
||||
{
|
||||
value: "1500+",
|
||||
description: "Satisfied Diners Monthly",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
52
src/pages/HomePage/sections/Testimonials.tsx
Normal file
52
src/pages/HomePage/sections/Testimonials.tsx
Normal file
@@ -0,0 +1,52 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "testimonials" section.
|
||||
|
||||
import React from 'react';
|
||||
import TestimonialMarqueeCards from '@/components/sections/testimonial/TestimonialMarqueeCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function TestimonialsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<SectionErrorBoundary name="testimonials">
|
||||
<TestimonialMarqueeCards
|
||||
tag="Reviews"
|
||||
title="What Guests Are Saying"
|
||||
description="Authentic experiences from our beloved patrons."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Sophia L.",
|
||||
role: "Food Critic",
|
||||
quote: "The most refined dining experience in the city. Exquisite.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/thin-tanned-woman-brown-bra-stylish-denim-shorts-enjoys-taste-waffle-with-cream-peanuts-maple-syrup_197531-18189.jpg",
|
||||
},
|
||||
{
|
||||
name: "James D.",
|
||||
role: "Local Regular",
|
||||
quote: "A true sanctuary of taste. Simply incredible.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/restaurant-chilling-out-classy-lifestyle-reserved-concept_53876-15896.jpg",
|
||||
},
|
||||
{
|
||||
name: "Elena R.",
|
||||
role: "Travel Blogger",
|
||||
quote: "The atmosphere is unmatched. Highly recommend.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/women-table-with-food_23-2147681106.jpg",
|
||||
},
|
||||
{
|
||||
name: "Marcus W.",
|
||||
role: "Entrepreneur",
|
||||
quote: "Perfect for business dinners. Elegance redefined.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-man-talking-his-girlfriend-lunch-time-restaurant_637285-1937.jpg",
|
||||
},
|
||||
{
|
||||
name: "Julia M.",
|
||||
role: "Artist",
|
||||
quote: "A feast for the eyes and the soul. Beautiful.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/women-holding-glasses-with-lemonade-table-with-different-dishes_141793-3258.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user