3 Commits

Author SHA1 Message Date
14a88aff33 Update src/app/page.tsx 2026-04-06 17:37:49 +00:00
954dd537cb Merge version_2 into main
Merge version_2 into main
2026-04-06 17:36:38 +00:00
652c8c086a Merge version_2 into main
Merge version_2 into main
2026-04-06 17:36:10 +00:00

View File

@@ -3,16 +3,11 @@
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel"; import HeroPersonalLinks from "@/components/sections/hero/HeroPersonalLinks";
import FeatureBento from "@/components/sections/feature/FeatureBento";
import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven"; import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven";
import TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
import FaqDouble from "@/components/sections/faq/FaqDouble";
import ContactText from "@/components/sections/contact/ContactText"; import ContactText from "@/components/sections/contact/ContactText";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import { Zap, ArrowUpRight, Bot, Database, Workflow, ShieldCheck, Cpu, CodeXml, LayoutGrid, BrainCircuit, Users } from "lucide-react"; import { Zap } from "lucide-react";
export default function WebAgency2Page() { export default function WebAgency2Page() {
return ( return (
@@ -42,21 +37,13 @@ export default function WebAgency2Page() {
/> />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboardCarousel <HeroPersonalLinks
title="Automate Your Business to Scale" title="Automate Your Business to Scale"
description="Stop wasting time on repetitive tasks. We deploy custom AI agents that work 24/7, driving efficiency and growth for your business."
tag="AI-Driven Business Automation"
tagIcon={Zap}
tagAnimation="slide-up"
background={{ variant: "canvas-reveal" }} background={{ variant: "canvas-reveal" }}
buttons={[ linkCards={[
{ text: "Schedule Demo", href: "#contact" }, {
{ text: "Our Capabilities", href: "#solutions" }, imageSrc: "http://img.b2bpic.net/free-photo/close-up-modern-laptop-with-rate-charts-display-while-man-woman-working-business-project-design-computer-screen-with-data-chart-information-finance-analysis-desk_482257-40065.jpg", imageAlt: "AI Workflow Dashboard", title: "Scale Faster", description: "Custom AI agents driving efficiency.", button: { text: "Schedule Demo", href: "#contact" }
]} }
buttonAnimation="slide-up"
mediaItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/close-up-modern-laptop-with-rate-charts-display-while-man-woman-working-business-project-design-computer-screen-with-data-chart-information-finance-analysis-desk_482257-40065.jpg", imageAlt: "AI Workflow Dashboard" },
{ imageSrc: "http://img.b2bpic.net/free-photo/robots-exercising-treadmill_1048-11633.jpg", imageAlt: "Automated Data Entry" }
]} ]}
/> />
</div> </div>
@@ -92,4 +79,4 @@ export default function WebAgency2Page() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }