Merge version_3 into main #5

Merged
bender merged 1 commits from version_3 into main 2026-04-24 15:15:59 +00:00

View File

@@ -6,8 +6,8 @@ import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatin
import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel";
import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen";
import TeamCardOne from "@/components/sections/team/TeamCardOne";
import ContactText from "@/components/sections/contact/ContactText";
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import SplitAbout from "@/components/sections/about/SplitAbout";
import { Sparkles, CheckCircle2, Shield, Target } from "lucide-react";
@@ -108,26 +108,30 @@ export default function WebAgency2Page() {
/>
</div>
<div id="contact" data-section="contact">
<ContactText
text="Enterprise-grade solutions for businesses ready to scale. Partner with us today."
background={{ variant: "downward-rays-animated" }}
useInvertedBackground={false}
<ContactCTA
tag="Ready to scale?"
title="Enterprise-grade solutions for businesses ready to grow."
description="Partner with DS Hub for mission-critical web development, performance optimization, and strategic digital consulting."
buttons={[
{ text: "Schedule Consult", href: "#contact" },
{ text: "View Pricing", href: "#pricing" }
{ text: "Learn More", href: "#about" }
]}
background={{ variant: "sparkles-gradient" }}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Webild"
<FooterMedia
logoText="DS Hub"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp"
columns={[
{ items: [{ label: "About", href: "#about" }, { label: "Contact", href: "#contact" }] },
{ items: [{ label: "Enterprise", href: "#" }, { label: "Security", href: "#" }] },
{ title: "Services", items: [{ label: "Web Development", href: "#" }, { label: "Consulting", href: "#" }, { label: "Security", href: "#" }] },
{ title: "Company", items: [{ label: "About", href: "#about" }, { label: "Careers", href: "#" }, { label: "Contact", href: "#contact" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] }
]}
copyrightText="© 2025 | DS Hub Enterprise Solutions"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}