Merge version_1_1782153336174 into main #1

Merged
bender merged 2 commits from version_1_1782153336174 into main 2026-06-22 18:37:02 +00:00

View File

@@ -5,99 +5,51 @@ import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function ServicesPage() {
return (
<>
<div id="pricing" data-section="pricing">
<SectionErrorBoundary name="pricing">
<div id="pricing" data-section="pricing">
<SectionErrorBoundary name="pricing">
<PricingLayeredCards
tag="Investment"
title="Bespoke Digital Packages"
description="Scalable solutions for premium brands."
plans={[
{
tag: "Startup",
price: "$2,500+",
description: "Essential web presence for growing brands.",
primaryButton: {
text: "Choose Basic",
href: "/contact",
},
features: [
"Modern Design",
"SEO Optimized",
"Responsive Grid",
"Email Support",
],
},
{
tag: "Growth",
price: "$5,000+",
description: "Custom platforms with advanced integrations.",
primaryButton: {
text: "Choose Pro",
href: "/contact",
},
features: [
"Custom Software",
"Performance Tuning",
"CRM Integration",
"Priority Support",
],
},
{
tag: "Enterprise",
price: "$10,000+",
description: "Full-stack luxury digital transformation.",
primaryButton: {
text: "Choose Elite",
href: "/contact",
},
features: [
"Bespoke Apps",
"Advanced Security",
"24/7 Dedicated Team",
"Brand Strategy",
],
},
]}
/>
</SectionErrorBoundary>
</div>
tag="Investment"
title="Bespoke Digital Packages"
description="Scalable solutions for premium brands."
plans={[
{
tag: "Startup", price: "$2,500+", description: "Essential web presence for growing brands.", primaryButton: {
text: "Choose Basic", href: "/contact"},
features: ["Modern Design", "SEO Optimized", "Responsive Grid", "Email Support"],
},
{
tag: "Growth", price: "$5,000+", description: "Custom platforms with advanced integrations.", primaryButton: {
text: "Choose Pro", href: "/contact"},
features: ["Custom Software", "Performance Tuning", "CRM Integration", "Priority Support"],
},
{
tag: "Enterprise", price: "$10,000+", description: "Full-stack luxury digital transformation.", primaryButton: {
text: "Choose Elite", href: "/contact"},
features: ["Bespoke Apps", "Advanced Security", "24/7 Dedicated Team", "Brand Strategy"],
},
]}
/>
</SectionErrorBoundary>
</div>
<div id="product" data-section="product">
<SectionErrorBoundary name="product">
<div id="product" data-section="product">
<SectionErrorBoundary name="product">
<FeaturesImageBento
tag="Workflow"
title="Our Creative Process"
description="How we turn complex requirements into high-conversion digital experiences."
items={[
{
title: "Discovery",
description: "Deep-dive brand analysis.",
imageSrc: "http://img.b2bpic.net/free-photo/still-life-graphic-design-office_23-2151345424.jpg",
},
{
title: "Strategy",
description: "Custom architecture mapping.",
imageSrc: "http://img.b2bpic.net/free-photo/factory-employee-works-mockup-tablet-executives-discussing-strategies_482257-126500.jpg",
},
{
title: "Design",
description: "High-fidelity visual prototypes.",
imageSrc: "http://img.b2bpic.net/free-photo/digital-art-style-fashion-design-sketch-paper_23-2151487073.jpg",
},
{
title: "Engineering",
description: "Performant, secure code.",
imageSrc: "http://img.b2bpic.net/free-photo/woman-typing-laptop-sitting-home-with-automation-lighting-system-using-voice-controlled-sma_482257-2844.jpg",
},
{
title: "Optimization",
description: "Conversion-focused refinement.",
imageSrc: "http://img.b2bpic.net/free-photo/business-director-working-her-own-office-with-green-screen_482257-122590.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
tag="Workflow"
title="Our Creative Process"
description="How we turn complex requirements into high-conversion digital experiences."
items={[
{ title: "Discovery", description: "Deep-dive brand analysis.", imageSrc: "http://img.b2bpic.net/free-photo/still-life-graphic-design-office_23-2151345424.jpg" },
{ title: "Strategy", description: "Custom architecture mapping.", imageSrc: "http://img.b2bpic.net/free-photo/factory-employee-works-mockup-tablet-executives-discussing-strategies_482257-126500.jpg" },
{ title: "Design", description: "High-fidelity visual prototypes.", imageSrc: "http://img.b2bpic.net/free-photo/digital-art-style-fashion-design-sketch-paper_23-2151487073.jpg" },
{ title: "Engineering", description: "Performant, secure code.", imageSrc: "http://img.b2bpic.net/free-photo/woman-typing-laptop-sitting-home-with-automation-lighting-system-using-voice-controlled-sma_482257-2844.jpg" },
{ title: "Optimization", description: "Conversion-focused refinement.", imageSrc: "http://img.b2bpic.net/free-photo/business-director-working-her-own-office-with-green-screen_482257-122590.jpg" },
{ title: "Launch", description: "Deployment and scaling.", imageSrc: "http://img.b2bpic.net/free-photo/rendering-smart-home-device_23-2151039375.jpg" },
{ title: "Analysis", description: "Post-launch metrics review.", imageSrc: "http://img.b2bpic.net/free-photo/digital-banking-transparent-screen_53876-105382.jpg" }
]}
/>
</SectionErrorBoundary>
</div>
</>
);
}