Merge version_2_1783031702330 into main #1
@@ -5,15 +5,15 @@
|
||||
|
||||
:root {
|
||||
/* @colorThemes/lightTheme/grayNavyBlue */
|
||||
--background: #f5f4ef;
|
||||
--card: #dad6cd;
|
||||
--foreground: #2a2928;
|
||||
--primary-cta: #2a2928;
|
||||
--primary-cta-text: #f5f4ef;
|
||||
--secondary-cta: #ecebea;
|
||||
--secondary-cta-text: #2a2928;
|
||||
--accent: #ffffff;
|
||||
--background-accent: #c6b180;
|
||||
--background: #ffffff;
|
||||
--card: #f3f4f6;
|
||||
--foreground: #111827;
|
||||
--primary-cta: #111827;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #f3f4f6;
|
||||
--secondary-cta-text: #111827;
|
||||
--accent: #6b7280;
|
||||
--background-accent: #f9fafb;
|
||||
|
||||
/* @layout/border-radius/rounded */
|
||||
--radius: 1rem;
|
||||
|
||||
@@ -1,218 +1,37 @@
|
||||
import AboutText from '@/components/sections/about/AboutText';
|
||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento';
|
||||
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
||||
import MetricsMediaCards from '@/components/sections/metrics/MetricsMediaCards';
|
||||
import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee';
|
||||
import TestimonialTrustCard from '@/components/sections/testimonial/TestimonialTrustCard';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
// AUTO-GENERATED shell by per-section-migrate.
|
||||
// Section bodies live in the sibling sections/ folder (one file per section).
|
||||
// Edit those section files directly. Non-block content (wrappers,
|
||||
// non-inlinable sections) is preserved inline; extracted section blocks
|
||||
// become component refs.
|
||||
|
||||
export default function HomePage() {
|
||||
import React from 'react';
|
||||
import HeroSection from './HomePage/sections/Hero';
|
||||
import AboutSection from './HomePage/sections/About';
|
||||
import MenuSection from './HomePage/sections/Menu';
|
||||
import MetricsSection from './HomePage/sections/Metrics';
|
||||
import ReviewsSection from './HomePage/sections/Reviews';
|
||||
import SocialProofSection from './HomePage/sections/SocialProof';
|
||||
import FaqSection from './HomePage/sections/Faq';
|
||||
import ContactSection from './HomePage/sections/Contact';
|
||||
|
||||
export default function HomePage(): React.JSX.Element {
|
||||
return (
|
||||
<>
|
||||
<div id="hero" data-section="hero">
|
||||
<SectionErrorBoundary name="hero">
|
||||
<HeroOverlay
|
||||
tag="Since 2012"
|
||||
title="Authentic Grilled Flavors in Barcelona"
|
||||
description="Experience our signature roasted chicken, succulent steaks, and traditional Pakistani recipes in a cozy, welcoming atmosphere."
|
||||
primaryButton={{
|
||||
text: "Order Online",
|
||||
href: "#contact",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "View Menu",
|
||||
href: "#menu",
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/couple-having-fun-night_23-2149236889.jpg"
|
||||
textAnimation="fade"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<>
|
||||
<HeroSection />
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<SectionErrorBoundary name="about">
|
||||
<AboutText
|
||||
title="A tradition of taste, quality, and community."
|
||||
primaryButton={{
|
||||
text: "Book a Table",
|
||||
href: "#contact",
|
||||
}}
|
||||
textAnimation="slide-up"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<AboutSection />
|
||||
|
||||
<div id="menu" data-section="menu">
|
||||
<SectionErrorBoundary name="menu">
|
||||
<FeaturesImageBento
|
||||
tag="Our Specialties"
|
||||
title="Chef’s Selection"
|
||||
description="Explore our most loved dishes, prepared with fresh ingredients and traditional techniques."
|
||||
items={[
|
||||
{
|
||||
title: "Churrasco de Ternera",
|
||||
description: "Perfectly seasoned grilled veal.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/grilled-meat-pieces-with-side-onion-ketchup_140725-1788.jpg",
|
||||
},
|
||||
{
|
||||
title: "Full Roasted Chicken",
|
||||
description: "Tender, herb-marinated whole chicken.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-cooked-chicken-with-greens-inside-plate-dark-blue-desk-chicken-meat-food-dinner-meat_140725-40005.jpg",
|
||||
},
|
||||
{
|
||||
title: "Naan Bread",
|
||||
description: "Freshly baked in our traditional oven.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-mexican-food-composition-with-copyspace_23-2148140239.jpg",
|
||||
},
|
||||
{
|
||||
title: "Rib Eye Stake",
|
||||
description: "Big, juicy, and perfectly cooked.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/grilled-lamb-chop-steak_74190-2790.jpg",
|
||||
},
|
||||
{
|
||||
title: "Seasoned Vegetables",
|
||||
description: "Market-fresh grilled sides.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-plate-chicken-meat-with-vegetable-salad_114579-66214.jpg",
|
||||
},
|
||||
{
|
||||
title: "French Fries",
|
||||
description: "Golden and crispy.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/spilled-fried-potato-wedges-from-copper-utensil_23-2147841043.jpg",
|
||||
},
|
||||
{
|
||||
title: "Chef's Special Mix",
|
||||
description: "A curated variety of grilled favorites.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/holiday-friends-family-holiday-table-with-rabbit-meat-vegetables-pies-eggs-top-view_169016-3387.jpg",
|
||||
},
|
||||
]}
|
||||
textAnimation="fade"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<MenuSection />
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<SectionErrorBoundary name="metrics">
|
||||
<MetricsMediaCards
|
||||
tag="Our Reputation"
|
||||
title="Serving Joy"
|
||||
description="We are proud of our history and the thousands of satisfied customers we’ve served."
|
||||
metrics={[
|
||||
{
|
||||
value: "249+",
|
||||
title: "Google Reviews",
|
||||
description: "Trusted by our loyal diners.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/grilled-kebab-tomato-slices-wooden-plate_114579-69592.jpg",
|
||||
},
|
||||
{
|
||||
value: "4.6",
|
||||
title: "Rating",
|
||||
description: "Consistently praised for our quality.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/toasted-crunchy-french-croissant-with-ham-melted-cheese_346278-111.jpg",
|
||||
},
|
||||
]}
|
||||
textAnimation="slide-up"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<MetricsSection />
|
||||
|
||||
<div id="reviews" data-section="reviews">
|
||||
<SectionErrorBoundary name="reviews">
|
||||
<TestimonialTrustCard
|
||||
quote="The best meat in town! Perfectly prepared and amazing prices for the quality. We keep coming back!"
|
||||
rating={5}
|
||||
author="Silviya Tsvetkova"
|
||||
avatars={[
|
||||
{
|
||||
name: "Silviya",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-enjoying-dessert-drink-cafe_273609-4197.jpg",
|
||||
},
|
||||
{
|
||||
name: "Mark",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-woman-enjoying-drinks_23-2147859549.jpg",
|
||||
},
|
||||
{
|
||||
name: "Elena",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-using-smartphone-cafe_1170-719.jpg",
|
||||
},
|
||||
{
|
||||
name: "Carlos",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-enjoying-cafe-while-talking-waiter_637285-579.jpg",
|
||||
},
|
||||
{
|
||||
name: "Anna",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-man-enjoying-while-dining-with-his-girlfriend-restaurant_637285-1945.jpg",
|
||||
},
|
||||
]}
|
||||
textAnimation="fade"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<ReviewsSection />
|
||||
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SectionErrorBoundary name="social-proof">
|
||||
<SocialProofMarquee
|
||||
tag="Trusted by Locals"
|
||||
title="Local Favorites"
|
||||
description="Recommended by our community in Barcelona."
|
||||
names={[
|
||||
"Lahori Karahi",
|
||||
"AL-MUSTAFA HALAL",
|
||||
"New Ajwaa",
|
||||
"Sandwich Basma",
|
||||
"Sultan Grill",
|
||||
"Barcelona Foodie",
|
||||
"Local Gastronomist",
|
||||
]}
|
||||
textAnimation="fade"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<SocialProofSection />
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<SectionErrorBoundary name="faq">
|
||||
<FaqSplitMedia
|
||||
tag="Help"
|
||||
title="Common Questions"
|
||||
description="Find answers to our service hours, location, and dining options."
|
||||
items={[
|
||||
{
|
||||
question: "Do you offer delivery?",
|
||||
answer: "Yes, we provide reliable delivery services through our partners.",
|
||||
},
|
||||
{
|
||||
question: "Do you have vegetarian options?",
|
||||
answer: "Yes, our menu includes a variety of grilled vegetables and traditional sides.",
|
||||
},
|
||||
{
|
||||
question: "Can I book a table?",
|
||||
answer: "You are welcome to call us or visit us for seating arrangements.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/baked-chicken-tabaka-with-spices_1220-5019.jpg"
|
||||
textAnimation="slide-up"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<FaqSection />
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<SectionErrorBoundary name="contact">
|
||||
<ContactCta
|
||||
tag="Visit Us"
|
||||
text="Ready for an amazing meal? Visit us at Carrer de les Aigües del Llobregat, 116, L'Hospitalet de Llobregat."
|
||||
primaryButton={{
|
||||
text: "Call Us Now",
|
||||
href: "tel:667788031",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Get Directions",
|
||||
href: "#",
|
||||
}}
|
||||
textAnimation="fade"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<ContactSection />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
23
src/pages/HomePage/sections/About.tsx
Normal file
23
src/pages/HomePage/sections/About.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
// 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="A tradition of taste, quality, and community."
|
||||
primaryButton={{
|
||||
text: "Book a Table",
|
||||
href: "#contact",
|
||||
}}
|
||||
textAnimation="slide-up"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
28
src/pages/HomePage/sections/Contact.tsx
Normal file
28
src/pages/HomePage/sections/Contact.tsx
Normal file
@@ -0,0 +1,28 @@
|
||||
// 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="Visit Us"
|
||||
text="Ready for an amazing meal? Visit us at Carrer de les Aigües del Llobregat, 116, L'Hospitalet de Llobregat."
|
||||
primaryButton={{
|
||||
text: "Call Us Now",
|
||||
href: "tel:667788031",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Get Directions",
|
||||
href: "#",
|
||||
}}
|
||||
textAnimation="fade"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
36
src/pages/HomePage/sections/Faq.tsx
Normal file
36
src/pages/HomePage/sections/Faq.tsx
Normal file
@@ -0,0 +1,36 @@
|
||||
// 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="Help"
|
||||
title="Common Questions"
|
||||
description="Find answers to our service hours, location, and dining options."
|
||||
items={[
|
||||
{
|
||||
question: "Do you offer delivery?",
|
||||
answer: "Yes, we provide reliable delivery services through our partners.",
|
||||
},
|
||||
{
|
||||
question: "Do you have vegetarian options?",
|
||||
answer: "Yes, our menu includes a variety of grilled vegetables and traditional sides.",
|
||||
},
|
||||
{
|
||||
question: "Can I book a table?",
|
||||
answer: "You are welcome to call us or visit us for seating arrangements.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/baked-chicken-tabaka-with-spices_1220-5019.jpg"
|
||||
textAnimation="slide-up"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
30
src/pages/HomePage/sections/Hero.tsx
Normal file
30
src/pages/HomePage/sections/Hero.tsx
Normal file
@@ -0,0 +1,30 @@
|
||||
// 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 HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function HeroSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="hero" data-section="hero">
|
||||
<SectionErrorBoundary name="hero">
|
||||
<HeroOverlay
|
||||
tag="Since 2012"
|
||||
title="Authentic Grilled Flavors in Barcelona"
|
||||
description="Experience our signature roasted chicken, succulent steaks, and traditional Pakistani recipes in a cozy, welcoming atmosphere."
|
||||
primaryButton={{
|
||||
text: "Order Online",
|
||||
href: "#contact",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "View Menu",
|
||||
href: "#menu",
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/couple-having-fun-night_23-2149236889.jpg"
|
||||
textAnimation="fade"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
58
src/pages/HomePage/sections/Menu.tsx
Normal file
58
src/pages/HomePage/sections/Menu.tsx
Normal file
@@ -0,0 +1,58 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "menu" section.
|
||||
|
||||
import React from 'react';
|
||||
import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function MenuSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="menu" data-section="menu">
|
||||
<SectionErrorBoundary name="menu">
|
||||
<FeaturesImageBento
|
||||
tag="Our Specialties"
|
||||
title="Chef’s Selection"
|
||||
description="Explore our most loved dishes, prepared with fresh ingredients and traditional techniques."
|
||||
items={[
|
||||
{
|
||||
title: "Churrasco de Ternera",
|
||||
description: "Perfectly seasoned grilled veal.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/grilled-meat-pieces-with-side-onion-ketchup_140725-1788.jpg",
|
||||
},
|
||||
{
|
||||
title: "Full Roasted Chicken",
|
||||
description: "Tender, herb-marinated whole chicken.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-cooked-chicken-with-greens-inside-plate-dark-blue-desk-chicken-meat-food-dinner-meat_140725-40005.jpg",
|
||||
},
|
||||
{
|
||||
title: "Naan Bread",
|
||||
description: "Freshly baked in our traditional oven.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-mexican-food-composition-with-copyspace_23-2148140239.jpg",
|
||||
},
|
||||
{
|
||||
title: "Rib Eye Stake",
|
||||
description: "Big, juicy, and perfectly cooked.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/grilled-lamb-chop-steak_74190-2790.jpg",
|
||||
},
|
||||
{
|
||||
title: "Seasoned Vegetables",
|
||||
description: "Market-fresh grilled sides.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/black-plate-chicken-meat-with-vegetable-salad_114579-66214.jpg",
|
||||
},
|
||||
{
|
||||
title: "French Fries",
|
||||
description: "Golden and crispy.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/spilled-fried-potato-wedges-from-copper-utensil_23-2147841043.jpg",
|
||||
},
|
||||
{
|
||||
title: "Chef's Special Mix",
|
||||
description: "A curated variety of grilled favorites.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/holiday-friends-family-holiday-table-with-rabbit-meat-vegetables-pies-eggs-top-view_169016-3387.jpg",
|
||||
},
|
||||
]}
|
||||
textAnimation="fade"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
35
src/pages/HomePage/sections/Metrics.tsx
Normal file
35
src/pages/HomePage/sections/Metrics.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 "metrics" section.
|
||||
|
||||
import React from 'react';
|
||||
import MetricsMediaCards from '@/components/sections/metrics/MetricsMediaCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function MetricsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="metrics" data-section="metrics">
|
||||
<SectionErrorBoundary name="metrics">
|
||||
<MetricsMediaCards
|
||||
tag="Our Reputation"
|
||||
title="Serving Joy"
|
||||
description="We are proud of our history and the thousands of satisfied customers we’ve served."
|
||||
metrics={[
|
||||
{
|
||||
value: "249+",
|
||||
title: "Google Reviews",
|
||||
description: "Trusted by our loyal diners.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/grilled-kebab-tomato-slices-wooden-plate_114579-69592.jpg",
|
||||
},
|
||||
{
|
||||
value: "4.6",
|
||||
title: "Rating",
|
||||
description: "Consistently praised for our quality.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/toasted-crunchy-french-croissant-with-ham-melted-cheese_346278-111.jpg",
|
||||
},
|
||||
]}
|
||||
textAnimation="slide-up"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
43
src/pages/HomePage/sections/Reviews.tsx
Normal file
43
src/pages/HomePage/sections/Reviews.tsx
Normal file
@@ -0,0 +1,43 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "reviews" section.
|
||||
|
||||
import React from 'react';
|
||||
import TestimonialTrustCard from '@/components/sections/testimonial/TestimonialTrustCard';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function ReviewsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="reviews" data-section="reviews">
|
||||
<SectionErrorBoundary name="reviews">
|
||||
<TestimonialTrustCard
|
||||
quote="The best meat in town! Perfectly prepared and amazing prices for the quality. We keep coming back!"
|
||||
rating={5}
|
||||
author="Silviya Tsvetkova"
|
||||
avatars={[
|
||||
{
|
||||
name: "Silviya",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-enjoying-dessert-drink-cafe_273609-4197.jpg",
|
||||
},
|
||||
{
|
||||
name: "Mark",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-woman-enjoying-drinks_23-2147859549.jpg",
|
||||
},
|
||||
{
|
||||
name: "Elena",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-man-using-smartphone-cafe_1170-719.jpg",
|
||||
},
|
||||
{
|
||||
name: "Carlos",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-couple-enjoying-cafe-while-talking-waiter_637285-579.jpg",
|
||||
},
|
||||
{
|
||||
name: "Anna",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-man-enjoying-while-dining-with-his-girlfriend-restaurant_637285-1945.jpg",
|
||||
},
|
||||
]}
|
||||
textAnimation="fade"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
30
src/pages/HomePage/sections/SocialProof.tsx
Normal file
30
src/pages/HomePage/sections/SocialProof.tsx
Normal file
@@ -0,0 +1,30 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "social-proof" section.
|
||||
|
||||
import React from 'react';
|
||||
import SocialProofMarquee from '@/components/sections/social-proof/SocialProofMarquee';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function SocialProofSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="social-proof" data-section="social-proof">
|
||||
<SectionErrorBoundary name="social-proof">
|
||||
<SocialProofMarquee
|
||||
tag="Trusted by Locals"
|
||||
title="Local Favorites"
|
||||
description="Recommended by our community in Barcelona."
|
||||
names={[
|
||||
"Lahori Karahi",
|
||||
"AL-MUSTAFA HALAL",
|
||||
"New Ajwaa",
|
||||
"Sandwich Basma",
|
||||
"Sultan Grill",
|
||||
"Barcelona Foodie",
|
||||
"Local Gastronomist",
|
||||
]}
|
||||
textAnimation="fade"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user