Merge version_2_1781621157728 into main #1
@@ -1,228 +1,42 @@
|
||||
// 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.
|
||||
|
||||
import { StyleProvider } from "@/components/ui/StyleProvider";
|
||||
import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot";
|
||||
import HeroOverlay from "@/components/sections/hero/HeroOverlay";
|
||||
import AboutFeaturesSplit from "@/components/sections/about/AboutFeaturesSplit";
|
||||
import FeaturesMediaCards from "@/components/sections/features/FeaturesMediaCards";
|
||||
import FeaturesAlternatingSplit from "@/components/sections/features/FeaturesAlternatingSplit";
|
||||
import FeaturesTimelineCards from "@/components/sections/features/FeaturesTimelineCards";
|
||||
import TestimonialRatingCards from "@/components/sections/testimonial/TestimonialRatingCards";
|
||||
import FaqSimple from "@/components/sections/faq/FaqSimple";
|
||||
import ContactCta from "@/components/sections/contact/ContactCta";
|
||||
import React from 'react';
|
||||
import HeroSection from './HomePage/sections/Hero';
|
||||
import AboutSection from './HomePage/sections/About';
|
||||
import ServicesSection from './HomePage/sections/Services';
|
||||
import WhyChooseSection from './HomePage/sections/WhyChoose';
|
||||
import HowItWorksSection from './HomePage/sections/HowItWorks';
|
||||
import TestimonialsSection from './HomePage/sections/Testimonials';
|
||||
import FaqSection from './HomePage/sections/Faq';
|
||||
import ContactSection from './HomePage/sections/Contact';
|
||||
|
||||
export default function HomePage() {
|
||||
export default function HomePage(): React.JSX.Element {
|
||||
return (
|
||||
<StyleProvider heroBackground="none" siteBackground="aurora" buttonVariant="arrow">
|
||||
<SiteBackgroundSlot />
|
||||
|
||||
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroOverlay
|
||||
tag="Professional HVAC Services"
|
||||
title="Your Comfort Is Our Priority"
|
||||
description="Professional heating, ventilation, and air conditioning services for homes and businesses. From installations to emergency repairs, we keep your climate perfect year-round."
|
||||
primaryButton={{ text: "Schedule Service", href: "#contact" }}
|
||||
secondaryButton={{ text: "Our Services", href: "#services" }}
|
||||
imageSrc="https://storage.googleapis.com/webild/default/templates/hvac/img-1.jpg"
|
||||
avatarsSrc={[
|
||||
"https://storage.googleapis.com/webild/default/templates/web-agency-2/team-1.jpg",
|
||||
"https://storage.googleapis.com/webild/default/templates/web-agency-2/team-2.jpg",
|
||||
"https://storage.googleapis.com/webild/default/templates/web-agency-2/team-3.jpg",
|
||||
"https://storage.googleapis.com/webild/default/templates/web-agency-2/team-1.jpg",
|
||||
"https://storage.googleapis.com/webild/default/templates/web-agency-2/team-2.jpg",
|
||||
"https://storage.googleapis.com/webild/default/templates/web-agency-2/team-3.jpg",
|
||||
]}
|
||||
avatarsLabel="Trusted by 500+ clients"
|
||||
/>
|
||||
</div>
|
||||
<HeroSection />
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<AboutFeaturesSplit
|
||||
tag="About Us"
|
||||
title="Reliable Climate Solutions Since 2005"
|
||||
description="AirPro HVAC has been keeping homes and businesses comfortable for nearly two decades. Our certified technicians deliver expert installations, maintenance, and repairs."
|
||||
items={[
|
||||
{
|
||||
icon: "ShieldCheck",
|
||||
title: "2,500+ Systems Installed",
|
||||
description: "Trusted by homeowners and businesses across the region.",
|
||||
},
|
||||
{
|
||||
icon: "Clock",
|
||||
title: "24/7 Emergency Service",
|
||||
description: "Round-the-clock support when you need it most.",
|
||||
},
|
||||
{
|
||||
icon: "Award",
|
||||
title: "98% Satisfaction Rate",
|
||||
description: "Our commitment to quality speaks for itself.",
|
||||
},
|
||||
]}
|
||||
imageSrc="https://storage.googleapis.com/webild/default/templates/hvac/img-2.jpg"
|
||||
/>
|
||||
</div>
|
||||
<AboutSection />
|
||||
|
||||
<div id="services" data-section="services">
|
||||
<FeaturesMediaCards
|
||||
tag="Our Services"
|
||||
title="Comprehensive HVAC Solutions"
|
||||
description="From installations to emergency repairs, we have your comfort covered."
|
||||
primaryButton={{ text: "Get a Quote", href: "#contact" }}
|
||||
items={[
|
||||
{
|
||||
title: "AC Installation",
|
||||
description: "Expert installation of high-efficiency air conditioning systems for homes and commercial spaces.",
|
||||
imageSrc: "https://storage.googleapis.com/webild/default/templates/hvac/img-4.jpg",
|
||||
},
|
||||
{
|
||||
title: "Heating Systems",
|
||||
description: "Complete furnace and heat pump installations to keep you warm through every winter.",
|
||||
imageSrc: "https://storage.googleapis.com/webild/default/templates/hvac/img-5.jpg",
|
||||
},
|
||||
{
|
||||
title: "Maintenance Plans",
|
||||
description: "Preventative maintenance programs that extend the life of your system and reduce energy costs.",
|
||||
imageSrc: "https://storage.googleapis.com/webild/default/templates/hvac/img-6.jpg",
|
||||
},
|
||||
{
|
||||
title: "Emergency Repairs",
|
||||
description: "24/7 emergency repair service — we respond fast when your system breaks down unexpectedly.",
|
||||
imageSrc: "https://storage.googleapis.com/webild/default/templates/hvac/img-7.jpg",
|
||||
},
|
||||
{
|
||||
title: "Duct Cleaning",
|
||||
description: "Professional duct cleaning to improve air quality and system efficiency throughout your property.",
|
||||
imageSrc: "https://storage.googleapis.com/webild/default/templates/hvac/img-8.jpg",
|
||||
},
|
||||
{
|
||||
title: "System Inspections",
|
||||
description: "Thorough inspections with detailed reports and transparent recommendations — no hidden fees.",
|
||||
imageSrc: "https://storage.googleapis.com/webild/default/templates/hvac/img-9.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<ServicesSection />
|
||||
|
||||
<div id="why-choose" data-section="why-choose">
|
||||
<FeaturesAlternatingSplit
|
||||
tag="Why Choose Us"
|
||||
title="Why Choose AirPro"
|
||||
description="What sets us apart from the rest"
|
||||
items={[
|
||||
{
|
||||
title: "Reliability & Trust",
|
||||
description: "Looking for a dependable HVAC company? We arrive on time and do the job right. Our technicians are background-checked and professionally trained.",
|
||||
imageSrc: "https://storage.googleapis.com/webild/default/templates/hvac/img-4.jpg",
|
||||
},
|
||||
{
|
||||
title: "Quality Workmanship",
|
||||
description: "Our skilled technicians excel in various HVAC repairs, using only top-quality materials and proven techniques that stand the test of time.",
|
||||
imageSrc: "https://storage.googleapis.com/webild/default/templates/hvac/img-5.jpg",
|
||||
},
|
||||
{
|
||||
title: "Fair & Transparent Pricing",
|
||||
description: "No surprises here! We offer clear quotes and fair pricing for quality work. You'll know exactly what you're paying for before we begin.",
|
||||
imageSrc: "https://storage.googleapis.com/webild/default/templates/hvac/img-6.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<WhyChooseSection />
|
||||
|
||||
<div id="how-it-works" data-section="how-it-works">
|
||||
<FeaturesTimelineCards
|
||||
tag="How It Works"
|
||||
title="Our Simple Process"
|
||||
description="From first call to finished job, we make HVAC service easy."
|
||||
items={[
|
||||
{
|
||||
title: "Schedule a Call",
|
||||
description: "Contact us by phone or online to describe your HVAC issue. We'll find a time that works for you.",
|
||||
imageSrc: "https://storage.googleapis.com/webild/default/templates/hvac/img-6.jpg",
|
||||
},
|
||||
{
|
||||
title: "On-Site Diagnosis",
|
||||
description: "A certified technician arrives on time, inspects your system, and explains the issue with a clear quote.",
|
||||
imageSrc: "https://storage.googleapis.com/webild/default/templates/hvac/img-7.jpg",
|
||||
},
|
||||
{
|
||||
title: "Expert Repair",
|
||||
description: "We complete the work using premium parts and proven techniques — most jobs done same day with our satisfaction guarantee.",
|
||||
imageSrc: "https://storage.googleapis.com/webild/default/templates/hvac/img-4.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<HowItWorksSection />
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialRatingCards
|
||||
tag="Testimonials"
|
||||
title="What Our Clients Say"
|
||||
description="Hear from homeowners and businesses who trust AirPro HVAC."
|
||||
testimonials={[
|
||||
{
|
||||
name: "James R.",
|
||||
role: "Homeowner, Austin TX",
|
||||
quote: "AirPro replaced our entire AC system in one day. The crew was professional, clean, and the new unit runs quieter than anything we've had before. Highly recommend.",
|
||||
rating: 5,
|
||||
imageSrc: "https://storage.googleapis.com/webild/default/templates/web-agency-2/team-1.jpg",
|
||||
},
|
||||
{
|
||||
name: "Linda M.",
|
||||
role: "Business Owner, Dallas TX",
|
||||
quote: "We use AirPro for all three of our office locations. Their maintenance plans have saved us thousands in emergency repairs. Always on time, always honest.",
|
||||
rating: 5,
|
||||
imageSrc: "https://storage.googleapis.com/webild/default/templates/web-agency-2/team-2.jpg",
|
||||
},
|
||||
{
|
||||
name: "Carlos D.",
|
||||
role: "Homeowner, Houston TX",
|
||||
quote: "Our furnace broke down on the coldest night of the year. AirPro had someone at our door within two hours. Fixed it on the spot. Can't thank them enough.",
|
||||
rating: 5,
|
||||
imageSrc: "https://storage.googleapis.com/webild/default/templates/web-agency-2/team-3.jpg",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<TestimonialsSection />
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSimple
|
||||
tag="FAQ"
|
||||
title="Frequently Asked Questions"
|
||||
description="Everything you need to know about our HVAC services."
|
||||
primaryButton={{ text: "Contact Us", href: "#contact" }}
|
||||
items={[
|
||||
{
|
||||
question: "Do you offer 24/7 emergency service?",
|
||||
answer: "Yes! We provide round-the-clock emergency HVAC service. If your system breaks down in the middle of the night or on a weekend, call us and a technician will be at your door as soon as possible.",
|
||||
},
|
||||
{
|
||||
question: "How often should I service my HVAC system?",
|
||||
answer: "We recommend servicing your system at least twice a year — once before summer for cooling and once before winter for heating. Regular maintenance extends your system's life and keeps energy bills low.",
|
||||
},
|
||||
{
|
||||
question: "What brands do you install and repair?",
|
||||
answer: "We work with all major HVAC brands including Carrier, Trane, Lennox, Daikin, Rheem, and more. Our technicians are trained and certified across multiple manufacturers.",
|
||||
},
|
||||
{
|
||||
question: "Do you offer financing options?",
|
||||
answer: "Yes, we offer flexible financing plans for new installations and major repairs. Ask about our 0% interest options so you can stay comfortable without straining your budget.",
|
||||
},
|
||||
{
|
||||
question: "How long does a typical installation take?",
|
||||
answer: "Most residential HVAC installations are completed in one day. Larger commercial projects may take 2-3 days depending on the scope. We'll give you an accurate timeline during your consultation.",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<FaqSection />
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCta
|
||||
tag="Get in Touch"
|
||||
text="Ready to Stay Comfortable Year-Round?"
|
||||
primaryButton={{ text: "Get a Free Quote", href: "#contact" }}
|
||||
secondaryButton={{ text: "Call (555) 987-6543", href: "tel:5559876543" }}
|
||||
/>
|
||||
</div>
|
||||
<ContactSection />
|
||||
|
||||
|
||||
</StyleProvider>
|
||||
|
||||
19
src/pages/HomePage/sections/About.tsx
Normal file
19
src/pages/HomePage/sections/About.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
// 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 AboutFeaturesSplit from "@/components/sections/about/AboutFeaturesSplit";
|
||||
|
||||
export default function AboutSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="about" data-section="about">
|
||||
<AboutFeaturesSplit
|
||||
tag="À Propos"
|
||||
title="Authentic Syrian Cuisine"
|
||||
description="Experience the true taste of Syria right here in Birkhadem. We pride ourselves on serving authentic dishes made with fresh ingredients and traditional recipes."
|
||||
items={[{"title":"Dine-in","icon":"Utensils","description":"Enjoy your meal in our welcoming restaurant environment."},{"icon":"ShoppingBag","description":"Grab your favorite dishes to go.","title":"Takeaway"},{"title":"Delivery","icon":"Truck","description":"Get our delicious food delivered straight to your door."}]}
|
||||
imageSrc="https://images.unsplash.com/photo-1541518763669-27fef04b14ea?auto=format&fit=crop&q=80&w=1000"
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
18
src/pages/HomePage/sections/Contact.tsx
Normal file
18
src/pages/HomePage/sections/Contact.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 "contact" section.
|
||||
|
||||
import React from 'react';
|
||||
import ContactCta from "@/components/sections/contact/ContactCta";
|
||||
|
||||
export default function ContactSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCta
|
||||
tag="Contact Us"
|
||||
text="Visit Us Today at Damasquino La Côte"
|
||||
primaryButton={{"href":"https://maps.google.com/?q=N1+La+côte,+Birkhadem+16029,+Algérie","text":"Get Directions"}}
|
||||
secondaryButton={{"text":"Call +213 561 61 66 10","href":"tel:+213561616610"}}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
19
src/pages/HomePage/sections/Faq.tsx
Normal file
19
src/pages/HomePage/sections/Faq.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
// 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 FaqSimple from "@/components/sections/faq/FaqSimple";
|
||||
|
||||
export default function FaqSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSimple
|
||||
tag="FAQ"
|
||||
title="Frequently Asked Questions"
|
||||
description="Common questions about our restaurant and services."
|
||||
primaryButton={{"text":"Call Us","href":"tel:+213561616610"}}
|
||||
items={[{"answer":"We are located at N1 La côte, Birkhadem 16029, Algérie.","question":"Where are you located?"},{"question":"What are your opening hours?","answer":"We are open daily and close at 23:30. Please note that hours may vary during holidays like the Islamic New Year."},{"answer":"Yes, we offer both takeaway and delivery services. You can call us at +213 561 61 66 10 to place an order.","question":"Do you offer delivery?"},{"question":"What is the average price per person?","answer":"Our average price per person is between 1,000 and 2,000 DZD."},{"answer":"Yes, you can view our full menu online at damasquino.net.","question":"Do you have an online menu?"}]}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
29
src/pages/HomePage/sections/Hero.tsx
Normal file
29
src/pages/HomePage/sections/Hero.tsx
Normal file
@@ -0,0 +1,29 @@
|
||||
// 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";
|
||||
|
||||
export default function HeroSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroOverlay
|
||||
tag="Restaurant Syrien"
|
||||
title="Damasquino La Côte"
|
||||
description="Authentic Syrian cuisine in Birkhadem. Enjoy our delicious meals on-site, take them away, or have them delivered straight to your door."
|
||||
primaryButton={{"text":"View Menu","href":"#menu"}}
|
||||
secondaryButton={{"text":"Call +213 561 61 66 10","href":"tel:+213561616610"}}
|
||||
imageSrc="https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&q=80&w=1000"
|
||||
avatarsSrc={[
|
||||
"https://storage.googleapis.com/webild/default/templates/web-agency-2/team-1.jpg",
|
||||
"https://storage.googleapis.com/webild/default/templates/web-agency-2/team-2.jpg",
|
||||
"https://storage.googleapis.com/webild/default/templates/web-agency-2/team-3.jpg",
|
||||
"https://storage.googleapis.com/webild/default/templates/web-agency-2/team-1.jpg",
|
||||
"https://storage.googleapis.com/webild/default/templates/web-agency-2/team-2.jpg",
|
||||
"https://storage.googleapis.com/webild/default/templates/web-agency-2/team-3.jpg",
|
||||
]}
|
||||
avatarsLabel="Rated 3.8 by 667+ customers"
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
18
src/pages/HomePage/sections/HowItWorks.tsx
Normal file
18
src/pages/HomePage/sections/HowItWorks.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 "how-it-works" section.
|
||||
|
||||
import React from 'react';
|
||||
import FeaturesTimelineCards from "@/components/sections/features/FeaturesTimelineCards";
|
||||
|
||||
export default function HowItWorksSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="how-it-works" data-section="how-it-works">
|
||||
<FeaturesTimelineCards
|
||||
tag="Ordering"
|
||||
title="How to Order"
|
||||
description="Getting your favorite Syrian food is easy."
|
||||
items={[{"imageSrc":"https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&q=80&w=1000","title":"1. Choose Your Meal","description":"Browse our menu online or visit us in person to see our delicious offerings."},{"imageSrc":"https://images.unsplash.com/photo-1541518763669-27fef04b14ea?auto=format&fit=crop&q=80&w=1000","title":"2. Place Your Order","description":"Call us at +213 561 61 66 10 to place your order for pickup or delivery."},{"imageSrc":"https://images.unsplash.com/photo-1555939594-58d7cb561ad1?auto=format&fit=crop&q=80&w=1000","title":"3. Enjoy Your Food","description":"Enjoy your authentic Syrian meal at home or in our restaurant."}]}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
19
src/pages/HomePage/sections/Services.tsx
Normal file
19
src/pages/HomePage/sections/Services.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "services" section.
|
||||
|
||||
import React from 'react';
|
||||
import FeaturesMediaCards from "@/components/sections/features/FeaturesMediaCards";
|
||||
|
||||
export default function ServicesSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="services" data-section="services">
|
||||
<FeaturesMediaCards
|
||||
tag="Menu"
|
||||
title="Our Delicious Menu"
|
||||
description="Explore our selection of authentic Syrian dishes, prepared fresh daily."
|
||||
primaryButton={{"text":"Order Now","href":"tel:+213561616610"}}
|
||||
items={[{"imageSrc":"https://images.unsplash.com/photo-1648823153736-44fbd74f6694?auto=format&fit=crop&q=80&w=1000","title":"Authentic Shawarma","description":"Traditional Syrian shawarma with garlic sauce and pickles, wrapped in fresh bread."},{"description":"Crispy on the outside, soft on the inside. Served with tahini sauce.","imageSrc":"https://images.unsplash.com/photo-1593010932917-0b1202ac8665?auto=format&fit=crop&q=80&w=1000","title":"Fresh Falafel"},{"description":"A selection of grilled meats including shish taouk, kebab, and tikka.","imageSrc":"https://images.unsplash.com/photo-1555939594-58d7cb561ad1?auto=format&fit=crop&q=80&w=1000","title":"Mixed Grill"},{"imageSrc":"https://images.unsplash.com/photo-1577805947697-89e18249d767?auto=format&fit=crop&q=80&w=1000","title":"Classic Hummus","description":"Creamy chickpea dip served with warm pita bread and olive oil."},{"description":"Traditional Syrian sweets including baklava and knafeh.","imageSrc":"https://images.unsplash.com/photo-1579372786545-d24232daf58c?auto=format&fit=crop&q=80&w=1000","title":"Syrian Desserts"},{"imageSrc":"https://images.unsplash.com/photo-1544145945-f90425340c7e?auto=format&fit=crop&q=80&w=1000","title":"Fresh Beverages","description":"Refreshing traditional drinks and fresh juices."}]}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
18
src/pages/HomePage/sections/Testimonials.tsx
Normal file
18
src/pages/HomePage/sections/Testimonials.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 "testimonials" section.
|
||||
|
||||
import React from 'react';
|
||||
import TestimonialRatingCards from "@/components/sections/testimonial/TestimonialRatingCards";
|
||||
|
||||
export default function TestimonialsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialRatingCards
|
||||
tag="Avis"
|
||||
title="Customer Reviews"
|
||||
description="See what our customers have to say about their experience at Damasquino La Côte."
|
||||
testimonials={[{"imageSrc":"https://storage.googleapis.com/webild/default/templates/web-agency-2/team-1.jpg","quote":"The best Syrian food in Birkhadem! The shawarma is incredible and the service is always friendly.","name":"Customer 1","rating":5,"role":"Local Guide"},{"imageSrc":"https://storage.googleapis.com/webild/default/templates/web-agency-2/team-2.jpg","name":"Customer 2","quote":"Authentic taste and great portions. I highly recommend the mixed grill. Delivery was fast too!","role":"Regular Customer","rating":5},{"name":"Customer 3","quote":"A wonderful dining experience. The atmosphere is great and the food is consistently delicious.","imageSrc":"https://storage.googleapis.com/webild/default/templates/web-agency-2/team-3.jpg","role":"Food Enthusiast","rating":4}]}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
18
src/pages/HomePage/sections/WhyChoose.tsx
Normal file
18
src/pages/HomePage/sections/WhyChoose.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 "why-choose" section.
|
||||
|
||||
import React from 'react';
|
||||
import FeaturesAlternatingSplit from "@/components/sections/features/FeaturesAlternatingSplit";
|
||||
|
||||
export default function WhyChooseSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="why-choose" data-section="why-choose">
|
||||
<FeaturesAlternatingSplit
|
||||
tag="Why Choose Us"
|
||||
title="The Damasquino Experience"
|
||||
description="What makes Damasquino La Côte special"
|
||||
items={[{"imageSrc":"https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&q=80&w=1000","title":"Authentic Recipes","description":"Our chefs use traditional recipes passed down through generations to bring you the true taste of Syria."},{"imageSrc":"https://images.unsplash.com/photo-1541518763669-27fef04b14ea?auto=format&fit=crop&q=80&w=1000","title":"Fresh Ingredients","description":"We use only the freshest ingredients and high-quality meats to ensure every dish is perfect."},{"imageSrc":"https://images.unsplash.com/photo-1555939594-58d7cb561ad1?auto=format&fit=crop&q=80&w=1000","title":"Excellent Service","description":"Whether you dine in, take away, or order delivery, we strive to provide the best service possible."}]}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user