Merge version_4 into main #7

Merged
bender merged 1 commits from version_4 into main 2026-04-24 15:19:11 +00:00

View File

@@ -6,10 +6,10 @@ 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 ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterCard from "@/components/sections/footer/FooterCard";
import SplitAbout from "@/components/sections/about/SplitAbout";
import { Sparkles, CheckCircle2, Shield, Target } from "lucide-react";
import { Sparkles, CheckCircle2, Shield, Target, Mail, MapPin, Phone } from "lucide-react";
export default function WebAgency2Page() {
return (
@@ -108,31 +108,27 @@ export default function WebAgency2Page() {
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
<ContactSplit
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: "Learn More", href: "#about" }
]}
title="Enterprise-grade solutions for your business."
description="Partner with DS Hub for mission-critical web development, performance optimization, and strategic digital consulting. Get in touch with our team today."
background={{ variant: "sparkles-gradient" }}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
<FooterCard
logoText="DS Hub"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp"
columns={[
{ 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"
socialLinks={[
{ icon: Mail, href: "mailto:info@dshub.com", ariaLabel: "Email us" },
{ icon: Phone, href: "tel:+1234567890", ariaLabel: "Call us" },
{ icon: MapPin, href: "#", ariaLabel: "Visit us" }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}