Merge version_2_1782129618308 into main #1
@@ -72,11 +72,11 @@ export default function Layout() {
|
||||
items: [
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "https://instagram.com",
|
||||
href: "https://www.instagram.com/sviatoslav.vakarchuk/",
|
||||
},
|
||||
{
|
||||
label: "Facebook",
|
||||
href: "https://facebook.com",
|
||||
href: "https://www.facebook.com/pizzaiolo.krucza/directory_basic_info",
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
@@ -1,240 +1,33 @@
|
||||
import AboutTextSplit from '@/components/sections/about/AboutTextSplit';
|
||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||
import FeaturesArrowCards from '@/components/sections/features/FeaturesArrowCards';
|
||||
import FeaturesRevealCardsBento from '@/components/sections/features/FeaturesRevealCardsBento';
|
||||
import HeroSplitMediaGrid from '@/components/sections/hero/HeroSplitMediaGrid';
|
||||
import PricingLayeredCards from '@/components/sections/pricing/PricingLayeredCards';
|
||||
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 MenuSection from './HomePage/sections/Menu';
|
||||
import ExperienceSection from './HomePage/sections/Experience';
|
||||
import PizzaSection from './HomePage/sections/Pizza';
|
||||
import TestimonialsSection from './HomePage/sections/Testimonials';
|
||||
import ContactSection from './HomePage/sections/Contact';
|
||||
|
||||
export default function HomePage(): React.JSX.Element {
|
||||
return (
|
||||
<>
|
||||
<div id="hero" data-section="hero">
|
||||
<SectionErrorBoundary name="hero">
|
||||
<HeroSplitMediaGrid
|
||||
tag="Autentyczny smak"
|
||||
title="Autentyczny ogień Italii w sercu Warszawy"
|
||||
description="Odkryj rzemieślniczą pasję zamkniętą w każdej pizzy, pieczonej w tradycyjnym piecu opalanym drewnem. Doświadcz luksusu w każdym kęsie."
|
||||
primaryButton={{
|
||||
text: "Zarezerwuj stolik",
|
||||
href: "#contact",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Zobacz menu",
|
||||
href: "#menu",
|
||||
}}
|
||||
items={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/baking-delicious-pizza-with-wood-fired-oven_23-2150134250.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/baking-delicious-pizza-with-wood-fired-oven_23-2150134260.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<>
|
||||
<HeroSection />
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<SectionErrorBoundary name="about">
|
||||
<AboutTextSplit
|
||||
title="Tradycja w nowoczesnym wydaniu"
|
||||
descriptions={[
|
||||
"Pizzaiolo Krucza to hołd dla włoskiego rzemiosła. Nasza historia zaczęła się od zamiłowania do najprostszych, a zarazem najbardziej wymagających składników.",
|
||||
"W sercu naszej kuchni płonie ogień, który nadaje pizzy wyjątkowego charakteru. Każde danie tworzymy z myślą o Warszawie, która kocha autentyczność.",
|
||||
]}
|
||||
primaryButton={{
|
||||
text: "Historia miejsca",
|
||||
href: "#",
|
||||
}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<AboutSection />
|
||||
|
||||
<div id="menu" data-section="menu">
|
||||
<SectionErrorBoundary name="menu">
|
||||
<FeaturesRevealCardsBento
|
||||
tag="Menu"
|
||||
title="Włoska klasyka"
|
||||
description="Odkryj naszą selekcję pizz, past i starannie dobranej karty win."
|
||||
items={[
|
||||
{
|
||||
title: "Margherita",
|
||||
description: "Pomidory San Marzano, mozzarella fior di latte, bazylia.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/italian-fast-food-pizza-with-full-vegetables-greenery_114579-1960.jpg",
|
||||
},
|
||||
{
|
||||
title: "Diavola",
|
||||
description: "Pikantne salami, oliwki, chili.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-slice-pizza-wooden-board_176474-120139.jpg",
|
||||
},
|
||||
{
|
||||
title: "Carbonara",
|
||||
description: "Guanciale, pecorino romano, żółtko.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-truffle-pasta-still-life_23-2149525113.jpg",
|
||||
},
|
||||
{
|
||||
title: "Bufala",
|
||||
description: "Mozzarella di bufala, pomidorki confit.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vintage-wooden-old-closeup-wine_1203-6334.jpg",
|
||||
},
|
||||
{
|
||||
title: "Tartufo",
|
||||
description: "Krem truflowy, grzyby leśne.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-mix-alcohol-bottles_23-2148673770.jpg",
|
||||
},
|
||||
{
|
||||
title: "Prosciutto",
|
||||
description: "Szynka parmeńska, rukola, parmezan.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-hands-getting-bottle-red-wine_53876-23320.jpg",
|
||||
},
|
||||
{
|
||||
title: "Vino",
|
||||
description: "Wyselekcjonowane etykiety z włoskich winnic.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/containers-liquid-soap-shampoo-with-dispenser-is-sold-supermarket_169016-43468.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<MenuSection />
|
||||
|
||||
<div id="experience" data-section="experience">
|
||||
<SectionErrorBoundary name="experience">
|
||||
<FeaturesArrowCards
|
||||
tag="Doświadczenie"
|
||||
title="Więcej niż kolacja"
|
||||
description="Zmysłowa podróż do Włoch w centrum Warszawy."
|
||||
items={[
|
||||
{
|
||||
title: "Wnętrza",
|
||||
tags: [
|
||||
"Klimat",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-diverse-women-having-meal-together-using-digital-devices_53876-13795.jpg",
|
||||
},
|
||||
{
|
||||
title: "Kuchnia",
|
||||
tags: [
|
||||
"Pasja",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-with-phone-night_1303-5750.jpg",
|
||||
},
|
||||
{
|
||||
title: "Goście",
|
||||
tags: [
|
||||
"Lifestyle",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-pouring-wine-glass_23-2148681900.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<ExperienceSection />
|
||||
|
||||
<div id="pizza" data-section="pizza">
|
||||
<SectionErrorBoundary name="pizza">
|
||||
<PricingLayeredCards
|
||||
tag="Nasze pizze"
|
||||
title="Wyjątkowe kompozycje"
|
||||
description="Czyste składniki, długie wyrastanie ciasta."
|
||||
plans={[
|
||||
{
|
||||
tag: "Classico",
|
||||
price: "45 PLN",
|
||||
description: "Tradycyjne włoskie smaki.",
|
||||
primaryButton: {
|
||||
text: "Zamów",
|
||||
href: "#",
|
||||
},
|
||||
features: [
|
||||
"Mąka 00",
|
||||
"48h wyrastania",
|
||||
],
|
||||
},
|
||||
{
|
||||
tag: "Premium",
|
||||
price: "65 PLN",
|
||||
description: "Autorskie kompozycje szefa kuchni.",
|
||||
primaryButton: {
|
||||
text: "Zamów",
|
||||
href: "#",
|
||||
},
|
||||
features: [
|
||||
"Składniki DOP",
|
||||
"Ogień z pieca",
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<PizzaSection />
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<SectionErrorBoundary name="testimonials">
|
||||
<TestimonialMarqueeCards
|
||||
tag="Opinie"
|
||||
title="Co mówią goście"
|
||||
description="Autentyczne doświadczenia naszych gości."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Anna K.",
|
||||
role: "Food Blogger",
|
||||
quote: "Najlepsza pizza w Warszawie. Klimat jak w Rzymie.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/adorable-loving-couple-with-wine-cafe_23-2147735760.jpg",
|
||||
},
|
||||
{
|
||||
name: "Marek P.",
|
||||
role: "Architekt",
|
||||
quote: "Luksusowe wnętrze i genialna obsługa.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-people-table_23-2149213367.jpg",
|
||||
},
|
||||
{
|
||||
name: "Julia W.",
|
||||
role: "Designer",
|
||||
quote: "Cudowne miejsce na randkę. Bardzo polecam.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-fried-chicken-with-baked-potatoes-wooden-board-glass-red-wine-table_140725-12806.jpg",
|
||||
},
|
||||
{
|
||||
name: "Tomasz B.",
|
||||
role: "Koneser",
|
||||
quote: "Prawdziwa włoska szkoła. Wracam regularnie.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-pretty-fashionable-woman-black-dress-holding-piece-pizza-while-sitting-bed-her-apartment_132075-9624.jpg",
|
||||
},
|
||||
{
|
||||
name: "Kasia M.",
|
||||
role: "Lifestyle Manager",
|
||||
quote: "Piękny lokal, fantastyczne wino.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-caucasian-woman-holding-shopping-bags-make-selfie-by-camera-clothing-store_839833-1916.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<TestimonialsSection />
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<SectionErrorBoundary name="contact">
|
||||
<ContactCta
|
||||
tag="Rezerwacja"
|
||||
text="Zapraszamy na ucztę. Zarezerwuj swój stolik już teraz."
|
||||
primaryButton={{
|
||||
text: "Rezerwuj online",
|
||||
href: "#",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Kontakt",
|
||||
href: "#",
|
||||
}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<ContactSection />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
26
src/pages/HomePage/sections/About.tsx
Normal file
26
src/pages/HomePage/sections/About.tsx
Normal file
@@ -0,0 +1,26 @@
|
||||
// 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 AboutTextSplit from '@/components/sections/about/AboutTextSplit';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function AboutSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="about" data-section="about">
|
||||
<SectionErrorBoundary name="about">
|
||||
<AboutTextSplit
|
||||
title="Tradycja w nowoczesnym wydaniu"
|
||||
descriptions={[
|
||||
"Pizzaiolo Krucza to hołd dla włoskiego rzemiosła. Nasza historia zaczęła się od zamiłowania do najprostszych, a zarazem najbardziej wymagających składników.",
|
||||
"W sercu naszej kuchni płonie ogień, który nadaje pizzy wyjątkowego charakteru. Każde danie tworzymy z myślą o Warszawie, która kocha autentyczność.",
|
||||
]}
|
||||
primaryButton={{
|
||||
text: "Historia miejsca",
|
||||
href: "#",
|
||||
}}
|
||||
/>
|
||||
</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="Rezerwacja"
|
||||
text="Zapraszamy na ucztę. Zarezerwuj swój stolik już teraz."
|
||||
primaryButton={{
|
||||
text: "Rezerwuj online",
|
||||
href: "#",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Kontakt",
|
||||
href: "#",
|
||||
}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
43
src/pages/HomePage/sections/Experience.tsx
Normal file
43
src/pages/HomePage/sections/Experience.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 "experience" section.
|
||||
|
||||
import React from 'react';
|
||||
import FeaturesArrowCards from '@/components/sections/features/FeaturesArrowCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function ExperienceSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="experience" data-section="experience">
|
||||
<SectionErrorBoundary name="experience">
|
||||
<FeaturesArrowCards
|
||||
tag="Doświadczenie"
|
||||
title="Więcej niż kolacja"
|
||||
description="Zmysłowa podróż do Włoch w centrum Warszawy."
|
||||
items={[
|
||||
{
|
||||
title: "Wnętrza",
|
||||
tags: [
|
||||
"Klimat",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/group-diverse-women-having-meal-together-using-digital-devices_53876-13795.jpg",
|
||||
},
|
||||
{
|
||||
title: "Kuchnia",
|
||||
tags: [
|
||||
"Pasja",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-with-phone-night_1303-5750.jpg",
|
||||
},
|
||||
{
|
||||
title: "Goście",
|
||||
tags: [
|
||||
"Lifestyle",
|
||||
],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-pouring-wine-glass_23-2148681900.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
36
src/pages/HomePage/sections/Hero.tsx
Normal file
36
src/pages/HomePage/sections/Hero.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 "hero" section.
|
||||
|
||||
import React from 'react';
|
||||
import HeroSplitMediaGrid from '@/components/sections/hero/HeroSplitMediaGrid';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function HeroSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="hero" data-section="hero">
|
||||
<SectionErrorBoundary name="hero">
|
||||
<HeroSplitMediaGrid
|
||||
tag="Autentyczny smak"
|
||||
title="Autentyczny ogień Italii w sercu Warszawy"
|
||||
description="Odkryj rzemieślniczą pasję zamkniętą w każdej pizzy, pieczonej w tradycyjnym piecu opalanym drewnem. Doświadcz luksusu w każdym kęsie."
|
||||
primaryButton={{
|
||||
text: "Zarezerwuj stolik",
|
||||
href: "#contact",
|
||||
}}
|
||||
secondaryButton={{
|
||||
text: "Zobacz menu",
|
||||
href: "#menu",
|
||||
}}
|
||||
items={[
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/baking-delicious-pizza-with-wood-fired-oven_23-2150134250.jpg",
|
||||
},
|
||||
{
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/baking-delicious-pizza-with-wood-fired-oven_23-2150134260.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
64
src/pages/HomePage/sections/Menu.tsx
Normal file
64
src/pages/HomePage/sections/Menu.tsx
Normal file
@@ -0,0 +1,64 @@
|
||||
// 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 FeaturesRevealCardsBento from '@/components/sections/features/FeaturesRevealCardsBento';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function MenuSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="menu" data-section="menu">
|
||||
<SectionErrorBoundary name="menu">
|
||||
<FeaturesRevealCardsBento
|
||||
tag="Menu"
|
||||
title="Włoska klasyka"
|
||||
description="Odkryj naszą selekcję pizz, past i starannie dobranej karty win."
|
||||
items={[
|
||||
{
|
||||
title: "Margherita",
|
||||
description: "Pomidory San Marzano, mozzarella fior di latte, bazylia.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/italian-fast-food-pizza-with-full-vegetables-greenery_114579-1960.jpg",
|
||||
},
|
||||
{
|
||||
title: "Diavola",
|
||||
description: "Pikantne salami, oliwki, chili.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-slice-pizza-wooden-board_176474-120139.jpg",
|
||||
},
|
||||
{
|
||||
title: "Carbonara",
|
||||
description: "Guanciale, pecorino romano, żółtko.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-truffle-pasta-still-life_23-2149525113.jpg",
|
||||
},
|
||||
{
|
||||
title: "Bufala",
|
||||
description: "Mozzarella di bufala, pomidorki confit.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vintage-wooden-old-closeup-wine_1203-6334.jpg",
|
||||
},
|
||||
{
|
||||
title: "Tartufo",
|
||||
description: "Krem truflowy, grzyby leśne.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-mix-alcohol-bottles_23-2148673770.jpg",
|
||||
},
|
||||
{
|
||||
title: "Prosciutto",
|
||||
description: "Szynka parmeńska, rukola, parmezan.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/people-hands-getting-bottle-red-wine_53876-23320.jpg",
|
||||
},
|
||||
{
|
||||
title: "Vino",
|
||||
description: "Wyselekcjonowane etykiety z włoskich winnic.",
|
||||
href: "#",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/containers-liquid-soap-shampoo-with-dispenser-is-sold-supermarket_169016-43468.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
48
src/pages/HomePage/sections/Pizza.tsx
Normal file
48
src/pages/HomePage/sections/Pizza.tsx
Normal file
@@ -0,0 +1,48 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "pizza" section.
|
||||
|
||||
import React from 'react';
|
||||
import PricingLayeredCards from '@/components/sections/pricing/PricingLayeredCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function PizzaSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="pizza" data-section="pizza">
|
||||
<SectionErrorBoundary name="pizza">
|
||||
<PricingLayeredCards
|
||||
tag="Nasze pizze"
|
||||
title="Wyjątkowe kompozycje"
|
||||
description="Czyste składniki, długie wyrastanie ciasta."
|
||||
plans={[
|
||||
{
|
||||
tag: "Classico",
|
||||
price: "45 PLN",
|
||||
description: "Tradycyjne włoskie smaki.",
|
||||
primaryButton: {
|
||||
text: "Zamów",
|
||||
href: "#",
|
||||
},
|
||||
features: [
|
||||
"Mąka 00",
|
||||
"48h wyrastania",
|
||||
],
|
||||
},
|
||||
{
|
||||
tag: "Premium",
|
||||
price: "65 PLN",
|
||||
description: "Autorskie kompozycje szefa kuchni.",
|
||||
primaryButton: {
|
||||
text: "Zamów",
|
||||
href: "#",
|
||||
},
|
||||
features: [
|
||||
"Składniki DOP",
|
||||
"Ogień z pieca",
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</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="Opinie"
|
||||
title="Co mówią goście"
|
||||
description="Autentyczne doświadczenia naszych gości."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Anna K.",
|
||||
role: "Food Blogger",
|
||||
quote: "Najlepsza pizza w Warszawie. Klimat jak w Rzymie.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/adorable-loving-couple-with-wine-cafe_23-2147735760.jpg",
|
||||
},
|
||||
{
|
||||
name: "Marek P.",
|
||||
role: "Architekt",
|
||||
quote: "Luksusowe wnętrze i genialna obsługa.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-people-table_23-2149213367.jpg",
|
||||
},
|
||||
{
|
||||
name: "Julia W.",
|
||||
role: "Designer",
|
||||
quote: "Cudowne miejsce na randkę. Bardzo polecam.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/side-view-fried-chicken-with-baked-potatoes-wooden-board-glass-red-wine-table_140725-12806.jpg",
|
||||
},
|
||||
{
|
||||
name: "Tomasz B.",
|
||||
role: "Koneser",
|
||||
quote: "Prawdziwa włoska szkoła. Wracam regularnie.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-pretty-fashionable-woman-black-dress-holding-piece-pizza-while-sitting-bed-her-apartment_132075-9624.jpg",
|
||||
},
|
||||
{
|
||||
name: "Kasia M.",
|
||||
role: "Lifestyle Manager",
|
||||
quote: "Piękny lokal, fantastyczne wino.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-caucasian-woman-holding-shopping-bags-make-selfie-by-camera-clothing-store_839833-1916.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user