Merge version_1_1781566196313 into main #2

Merged
bender merged 2 commits from version_1_1781566196313 into main 2026-06-15 23:31:05 +00:00

View File

@@ -6,80 +6,51 @@ import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function ServicesPage() {
return (
<>
<div id="services-bento" data-section="services-bento">
<SectionErrorBoundary name="services-bento">
<div id="services-bento" data-section="services-bento">
<SectionErrorBoundary name="services-bento">
<FeaturesBento
tag="OUR SERVICES"
title="SOLUTIONS THAT DRIVE GROWTH"
description="From custom designs to automated lead generation systems."
features={[
{
title: "Website Design",
description: "Custom sites from scratch.",
bentoComponent: "info-card-marquee",
infoCards: [
{
icon: Pen,
label: "UI Design",
value: "Premium",
},
{
icon: Code,
label: "Development",
value: "Fast",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/template-badge-layout-mock-up-visual-blank-concept_53876-120337.jpg",
imageAlt: "Template Badge Layout Mock-up Visual Blank Concept",
},
{
title: "AI Automation",
description: "Smart chatbots that convert visitors into leads 24/7.",
bentoComponent: "chat-marquee",
aiIcon: Star,
userIcon: User,
exchanges: [
{
userMessage: "Do you offer quotes?",
aiResponse: "Yes, I can get that for you!",
},
],
placeholder: "...",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-graphic-design-office_23-2151345397.jpg?_wi=2",
imageAlt: "Template Badge Layout Mock-up Visual Blank Concept",
},
]}
/>
</SectionErrorBoundary>
</div>
tag="OUR SERVICES"
title="SOLUTIONS THAT DRIVE GROWTH"
description="From custom designs to automated lead generation systems."
features={[
{
title: "Website Design", description: "Custom sites from scratch.", bentoComponent: "info-card-marquee", infoCards: [
{
icon: "Pen", label: "UI Design", value: "Premium"},
{
icon: "Code", label: "Development", value: "Fast"},
],
},
{
title: "AI Automation", description: "Smart chatbots that convert visitors into leads 24/7.", bentoComponent: "chat-marquee", aiIcon: "Star", userIcon: "User", exchanges: [
{
userMessage: "Do you offer quotes?", aiResponse: "Yes, I can get that for you!"},
],
placeholder: "..."},
]}
/>
</SectionErrorBoundary>
</div>
<div id="metrics" data-section="metrics">
<SectionErrorBoundary name="metrics">
<div id="metrics" data-section="metrics">
<SectionErrorBoundary name="metrics">
<MetricsFeatureCards
tag="PERFORMANCE"
title="METRICS THAT MATTER"
description="Data-driven results for your business."
metrics={[
{
value: "2x",
title: "Lead Volume",
features: [
"Qualified traffic",
"AI filtering",
],
},
{
value: "99%",
title: "Uptime",
features: [
"Cloud hosting",
"Global CDN",
],
},
]}
/>
</SectionErrorBoundary>
</div>
tag="PERFORMANCE"
title="METRICS THAT MATTER"
description="Data-driven results for your business."
metrics={[
{
value: "2x", title: "Lead Volume", features: [
"Qualified traffic", "AI filtering"],
},
{
value: "99%", title: "Uptime", features: [
"Cloud hosting", "Global CDN"],
},
]}
/>
</SectionErrorBoundary>
</div>
</>
);
}