4 Commits

Author SHA1 Message Date
5d8799d775 Merge version_2 into main
Merge version_2 into main
2026-06-14 06:52:15 +00:00
0085afd348 Remove watermark 2026-06-14 06:52:12 +00:00
1cfb9f6029 Switch to version 2: modified src/app/page.tsx 2026-04-06 18:21:12 +00:00
58bae39575 Merge version_3 into main
Merge version_3 into main
2026-04-06 17:37:52 +00:00
2 changed files with 22 additions and 10 deletions

View File

@@ -4,7 +4,6 @@ import { Inter } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
const halant = Halant({
@@ -34,7 +33,7 @@ export default function RootLayout({
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{

View File

@@ -3,11 +3,16 @@
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import HeroPersonalLinks from "@/components/sections/hero/HeroPersonalLinks";
import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel";
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 TestimonialCardTwelve from "@/components/sections/testimonial/TestimonialCardTwelve";
import FaqDouble from "@/components/sections/faq/FaqDouble";
import ContactText from "@/components/sections/contact/ContactText";
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
import { Zap } from "lucide-react";
import { Zap, ArrowUpRight, Bot, Database, Workflow, ShieldCheck, Cpu, CodeXml, LayoutGrid, BrainCircuit, Users } from "lucide-react";
export default function WebAgency2Page() {
return (
@@ -37,13 +42,21 @@ export default function WebAgency2Page() {
/>
</div>
<div id="hero" data-section="hero">
<HeroPersonalLinks
<HeroBillboardCarousel
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" }}
linkCards={[
{
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" }
}
buttons={[
{ text: "Schedule Demo", href: "#contact" },
{ text: "Our Capabilities", href: "#solutions" },
]}
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>
@@ -79,4 +92,4 @@ export default function WebAgency2Page() {
</ReactLenis>
</ThemeProvider>
);
}
}