Merge version_1_1781371177826 into main #1

Merged
bender merged 2 commits from version_1_1781371177826 into main 2026-06-13 17:20:53 +00:00

View File

@@ -8,96 +8,64 @@ import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function HomePage() {
return (
<>
<div id="hero" data-section="hero">
<SectionErrorBoundary name="hero">
<div id="hero" data-section="hero">
<SectionErrorBoundary name="hero">
<HeroBillboardTiltedCarousel
tag="AI Automation Experts"
title="AI Solutions for Modern Businesses"
description="We help businesses automate operations and increase revenue with AI-powered websites, voice assistants, chatbots, and business automations."
primaryButton={{
text: "Book Free Consultation",
href: "/contact",
}}
secondaryButton={{
text: "View Services",
href: "/services",
}}
items={[
{
imageSrc: "http://img.b2bpic.net/free-photo/blue-abstract-shape-glowing-grainy-textured_474888-8017.jpg",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/connecting-lines-dots-with-floating-particles_1048-12013.jpg",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/3d-abstract-data-technology-background-with-low-poly-plexus-design_1048-17287.jpg",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/abstract-futuristic-digital-technology-background_53876-104787.jpg",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/3d-abstract-techno-background-with-connecting-lines-dots_1048-11693.jpg",
},
{
imageSrc: "http://img.b2bpic.net/free-photo/abstract-technology-background-connecting-dots-digital-network-design_53876-160267.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
tag="AI Automation Experts"
title="AI Solutions for Modern Businesses"
description="We help businesses automate operations and increase revenue with AI-powered websites, voice assistants, chatbots, and business automations."
primaryButton={{ text: "Book Free Consultation", href: "/contact" }}
secondaryButton={{ text: "View Services", href: "/services" }}
items={[
{ imageSrc: "http://img.b2bpic.net/free-photo/blue-abstract-shape-glowing-grainy-textured_474888-8017.jpg" },
{ imageSrc: "http://img.b2bpic.net/free-photo/connecting-lines-dots-with-floating-particles_1048-12013.jpg" },
{ imageSrc: "http://img.b2bpic.net/free-photo/3d-abstract-data-technology-background-with-low-poly-plexus-design_1048-17287.jpg" },
{ imageSrc: "http://img.b2bpic.net/free-photo/abstract-futuristic-digital-technology-background_53876-104787.jpg" },
{ imageSrc: "http://img.b2bpic.net/free-photo/3d-abstract-techno-background-with-connecting-lines-dots_1048-11693.jpg" },
{ imageSrc: "http://img.b2bpic.net/free-photo/abstract-technology-background-connecting-dots-digital-network-design_53876-160267.jpg" }
]}
/>
</SectionErrorBoundary>
</div>
<div id="faq" data-section="faq">
<SectionErrorBoundary name="faq">
<div id="faq" data-section="faq">
<SectionErrorBoundary name="faq">
<FaqSplitMedia
tag="Questions?"
title="Frequently Asked"
items={[
{
question: "Can AI replace my staff?",
answer: "It augments them by handling repetitive tasks.",
},
{
question: "What is the timeline?",
answer: "Most projects are completed within 14 days.",
},
{
question: "Do you provide support?",
answer: "Yes, we offer ongoing maintenance plans.",
},
]}
imageSrc="http://img.b2bpic.net/free-vector/technology-background-with-statistics_23-2148924486.jpg"
/>
</SectionErrorBoundary>
</div>
tag="Questions?"
title="Frequently Asked"
description="Answers to the most common questions about our AI solutions."
items={[
{ question: "Can AI replace my staff?", answer: "It augments them by handling repetitive tasks." },
{ question: "What is the timeline?", answer: "Most projects are completed within 14 days." },
{ question: "Do you provide support?", answer: "Yes, we offer ongoing maintenance plans." }
]}
imageSrc="http://img.b2bpic.net/free-vector/technology-background-with-statistics_23-2148924486.jpg"
/>
</SectionErrorBoundary>
</div>
<div id="social-proof" data-section="social-proof">
<SectionErrorBoundary name="social-proof">
<div id="social-proof" data-section="social-proof">
<SectionErrorBoundary name="social-proof">
<SocialProofMarquee
tag="Trusted By"
title="Industry Leaders"
description="We partner with top-tier businesses to accelerate their growth through automation."
names={[
"NexTech Solutions",
"Apex Realty",
"Global Logistics",
"Elite Dental Group",
"Innovate Retail",
]}
/>
</SectionErrorBoundary>
</div>
tag="Trusted By"
title="Industry Leaders"
description="We partner with top-tier businesses to accelerate their growth through automation."
names={["NexTech Solutions", "Apex Realty", "Global Logistics", "Elite Dental Group", "Innovate Retail"]}
/>
</SectionErrorBoundary>
</div>
<div id="blog" data-section="blog">
<SectionErrorBoundary name="blog">
<BlogSimpleCards />
</SectionErrorBoundary>
</div>
<div id="blog" data-section="blog">
<SectionErrorBoundary name="blog">
<BlogSimpleCards tag="Insights" title="Our Latest Blog" description="Keep up with the latest in AI innovation." />
</SectionErrorBoundary>
</div>
<div id="legal" data-section="legal">
<SectionErrorBoundary name="legal">
<PolicyContent />
</SectionErrorBoundary>
</div>
<div id="legal" data-section="legal">
<SectionErrorBoundary name="legal">
<PolicyContent title="Legal & Policy" sections={[]} />
</SectionErrorBoundary>
</div>
</>
);
}
}