Merge version_20_1781899711155 into main #20

Merged
bender merged 1 commits from version_20_1781899711155 into main 2026-06-19 20:10:39 +00:00
2 changed files with 20 additions and 1 deletions

View File

@@ -19,7 +19,8 @@ import AiDemosSection from './HomePage/sections/AiDemos';
import AutomationShowcaseSection from './HomePage/sections/AutomationShowcase';
import PremiumHamperSection from './HomePage/sections/PremiumHamper';
import ReputationManagementSection from './HomePage/sections/ReputationManagement';
import CrmDashboardSection from './HomePage/sections/CrmDashboard';export default function HomePage(): React.JSX.Element {
import CrmDashboardSection from './HomePage/sections/CrmDashboard';
import FeaturesArrowCardsSection from './HomePage/sections/FeaturesArrowCards';export default function HomePage(): React.JSX.Element {
return (
<>
<HeroSection />
@@ -32,6 +33,7 @@ import CrmDashboardSection from './HomePage/sections/CrmDashboard';export defaul
<AboutSection />
<FeaturesSection />
<FeaturesArrowCardsSection />
<MetricsSection />

View File

@@ -0,0 +1,17 @@
// Created by add_section_from_catalog (FeaturesArrowCards).
import React from 'react';
import FeaturesArrowCards from '@/components/sections/features/FeaturesArrowCards';
export default function FeaturesArrowCardsSection(): React.JSX.Element {
return (
<div data-webild-section="features-arrow-cards" id="features-arrow-cards">
<FeaturesArrowCards
items={[{"imageSrc":"https://images.unsplash.com/photo-1551288049-bebda4e38f71?q=80&w=2070&auto=format&fit=crop","tags":["AI Receptionist","24/7 Availability","Lead Qualification"],"title":"Never Miss a Lead Again"},{"imageSrc":"https://images.unsplash.com/photo-1460925895917-afdab827c52f?q=80&w=2015&auto=format&fit=crop","tags":["Smart Scheduling","Calendar Sync","Automated Reminders"],"title":"Frictionless Appointment Booking"},{"tags":["Review Generation","Reputation Management","Social Proof"],"title":"Automated 5-Star Reviews","imageSrc":"https://images.unsplash.com/photo-1552664730-d307ca884978?q=80&w=2070&auto=format&fit=crop"},{"tags":["WhatsApp CRM","Centralized Inbox","Automated Follow-ups"],"title":"Unified Customer Communication","imageSrc":"https://images.unsplash.com/photo-1553877522-43269d4ea984?q=80&w=2070&auto=format&fit=crop"}]}
tag="Core Benefits"
description="Explore the powerful capabilities of the Business Operating System™ designed to automate your growth and streamline your operations."
title="High-Impact System Features"
/>
</div>
);
}