Merge version_1 into main #1
@@ -8,7 +8,7 @@ import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import { Globe, Star } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
@@ -26,28 +26,14 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Case Studies",
|
||||
id: "/case-studies",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Book a Call",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Case Studies", id: "/case-studies" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Book a Call", id: "/contact" },
|
||||
]}
|
||||
brandName="AI Agency"
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -59,18 +45,8 @@ export default function LandingPage() {
|
||||
title="Our Impact"
|
||||
description="We believe in transparency and measurable progress."
|
||||
metrics={[
|
||||
{
|
||||
id: "ma1",
|
||||
icon: Globe,
|
||||
title: "Global Clients",
|
||||
value: "50+",
|
||||
},
|
||||
{
|
||||
id: "ma2",
|
||||
icon: Star,
|
||||
title: "Client Rating",
|
||||
value: "4.9/5",
|
||||
},
|
||||
{ id: "ma1", icon: Globe, title: "Global Clients", value: "50+" },
|
||||
{ id: "ma2", icon: Star, title: "Client Rating", value: "4.9/5" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -83,16 +59,8 @@ export default function LandingPage() {
|
||||
description="Why we are the partner you need for the AI transformation."
|
||||
faqsAnimation="opacity"
|
||||
faqs={[
|
||||
{
|
||||
id: "a1",
|
||||
title: "What drives us?",
|
||||
content: "A commitment to building systems that empower humans to focus on what matters.",
|
||||
},
|
||||
{
|
||||
id: "a2",
|
||||
title: "Our vision",
|
||||
content: "To be the leading architect of scalable, intelligent AI ecosystems.",
|
||||
},
|
||||
{ id: "a1", title: "What drives us?", content: "A commitment to building systems that empower humans to focus on what matters." },
|
||||
{ id: "a2", title: "Our vision", content: "To be the leading architect of scalable, intelligent AI ecosystems." },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -100,30 +68,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Case Studies",
|
||||
href: "/case-studies",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "Services", href: "/services" }, { label: "Case Studies", href: "/case-studies" }] },
|
||||
{ items: [{ label: "Contact", href: "/contact" }, { label: "About", href: "/about" }] },
|
||||
]}
|
||||
logoText="AI Agency"
|
||||
/>
|
||||
@@ -131,4 +77,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -8,7 +8,7 @@ import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import { CheckCircle, TrendingUp } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function CaseStudiesPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
@@ -26,28 +26,14 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Case Studies",
|
||||
id: "/case-studies",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Book a Call",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Case Studies", id: "/case-studies" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Book a Call", id: "/contact" },
|
||||
]}
|
||||
brandName="AI Agency"
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -59,26 +45,8 @@ export default function LandingPage() {
|
||||
title="Success Stories"
|
||||
description="Real world impact of our AI-driven strategies."
|
||||
blogs={[
|
||||
{
|
||||
id: "b1",
|
||||
category: "E-commerce",
|
||||
title: "Automating Order Fulfillment",
|
||||
excerpt: "How we helped a leading retailer save 20 hours weekly.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3d-render-abstract-network-connections-with-shallow-depth-field_1048-14137.jpg",
|
||||
authorName: "Jane Doe",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-eyeglasses-crossed-arms-grey-background_613910-3693.jpg",
|
||||
date: "2023-11-01",
|
||||
},
|
||||
{
|
||||
id: "b2",
|
||||
category: "Healthcare",
|
||||
title: "Smart Scheduling Agents",
|
||||
excerpt: "Reducing patient wait times through intelligent AI booking.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3d-render-abstract-technology-with-flowing-cyber-particles_1048-15470.jpg",
|
||||
authorName: "John Smith",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/closeup-confident-asian-man-with-arms-crossed_1262-884.jpg",
|
||||
date: "2023-12-15",
|
||||
},
|
||||
{ id: "b1", category: "E-commerce", title: "Automating Order Fulfillment", excerpt: "How we helped a leading retailer save 20 hours weekly.", imageSrc: "http://img.b2bpic.net/free-photo/3d-render-abstract-network-connections-with-shallow-depth-field_1048-14137.jpg", authorName: "Jane Doe", authorAvatar: "http://img.b2bpic.net/free-photo/attractive-blond-business-woman-white-shirt-eyeglasses-crossed-arms-grey-background_613910-3693.jpg", date: "2023-11-01" },
|
||||
{ id: "b2", category: "Healthcare", title: "Smart Scheduling Agents", excerpt: "Reducing patient wait times through intelligent AI booking.", imageSrc: "http://img.b2bpic.net/free-photo/3d-render-abstract-technology-with-flowing-cyber-particles_1048-15470.jpg", authorName: "John Smith", authorAvatar: "http://img.b2bpic.net/free-photo/closeup-confident-asian-man-with-arms-crossed_1262-884.jpg", date: "2023-12-15" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -91,16 +59,8 @@ export default function LandingPage() {
|
||||
title="Results Delivered"
|
||||
description="See how we scale success."
|
||||
features={[
|
||||
{
|
||||
icon: CheckCircle,
|
||||
title: "Process Optimization",
|
||||
description: "Streamlining manual tasks.",
|
||||
},
|
||||
{
|
||||
icon: TrendingUp,
|
||||
title: "Revenue Growth",
|
||||
description: "Driving business expansion.",
|
||||
},
|
||||
{ icon: CheckCircle, title: "Process Optimization", description: "Streamlining manual tasks." },
|
||||
{ icon: TrendingUp, title: "Revenue Growth", description: "Driving business expansion." },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -108,30 +68,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Case Studies",
|
||||
href: "/case-studies",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "Services", href: "/services" }, { label: "Case Studies", href: "/case-studies" }] },
|
||||
{ items: [{ label: "Contact", href: "/contact" }, { label: "About", href: "/about" }] },
|
||||
]}
|
||||
logoText="AI Agency"
|
||||
/>
|
||||
@@ -139,4 +77,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -2,12 +2,12 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
@@ -25,28 +25,14 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Case Studies",
|
||||
id: "/case-studies",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Book a Call",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Case Studies", id: "/case-studies" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Book a Call", id: "/contact" },
|
||||
]}
|
||||
brandName="AI Agency"
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -56,18 +42,8 @@ export default function LandingPage() {
|
||||
title="Ready to Automate?"
|
||||
description="Book a free consultation to discuss your AI needs."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Name",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Email",
|
||||
required: true,
|
||||
},
|
||||
{ name: "name", type: "text", placeholder: "Name", required: true },
|
||||
{ name: "email", type: "email", placeholder: "Email", required: true },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/robot-with-tablet_1048-4563.jpg"
|
||||
/>
|
||||
@@ -76,9 +52,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Join Us"
|
||||
title="Stay Informed"
|
||||
description="Subscribe to our AI automation insights newsletter."
|
||||
@@ -90,30 +64,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Case Studies",
|
||||
href: "/case-studies",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "Services", href: "/services" }, { label: "Case Studies", href: "/case-studies" }] },
|
||||
{ items: [{ label: "Contact", href: "/contact" }, { label: "About", href: "/about" }] },
|
||||
]}
|
||||
logoText="AI Agency"
|
||||
/>
|
||||
@@ -121,4 +73,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
172
src/app/page.tsx
172
src/app/page.tsx
@@ -29,28 +29,14 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Case Studies",
|
||||
id: "/case-studies",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Book a Call",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Case Studies", id: "/case-studies" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Book a Call", id: "/contact" },
|
||||
]}
|
||||
brandName="AI Agency"
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -59,14 +45,8 @@ export default function LandingPage() {
|
||||
logoText="Scale Your Business With AI Automations & Intelligent Systems"
|
||||
description="We build AI agents, n8n automations, chatbots, custom websites and growth systems that save time and increase revenue."
|
||||
buttons={[
|
||||
{
|
||||
text: "Book Strategy Call",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
text: "View Services",
|
||||
href: "/services",
|
||||
},
|
||||
{ text: "Book Strategy Call", href: "/contact" },
|
||||
{ text: "View Services", href: "/services" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-ferromagnetic-metal-substance_23-2148253634.jpg"
|
||||
/>
|
||||
@@ -77,21 +57,9 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Trusted by Growing Businesses"
|
||||
metrics={[
|
||||
{
|
||||
icon: Zap,
|
||||
label: "Automations Built",
|
||||
value: "100+",
|
||||
},
|
||||
{
|
||||
icon: Building2,
|
||||
label: "Businesses Automated",
|
||||
value: "40+",
|
||||
},
|
||||
{
|
||||
icon: Clock,
|
||||
label: "Hours Saved",
|
||||
value: "30k+",
|
||||
},
|
||||
{ icon: Zap, label: "Automations Built", value: "100+" },
|
||||
{ icon: Building2, label: "Businesses Automated", value: "40+" },
|
||||
{ icon: Clock, label: "Hours Saved", value: "30k+" },
|
||||
]}
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
@@ -101,31 +69,11 @@ export default function LandingPage() {
|
||||
<TestimonialCardTwelve
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah J.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-middle-aged-man-using-tablet-street-cafe_1262-19056.jpg",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael K.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman-sitting-desk-table-business-company-office_482257-16773.jpg",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "David L.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/confident-businessman-smiling_107420-84734.jpg",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Emily R.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/stylish-young-man-brown-suit-posing_23-2152023595.jpg",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Alex B.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg",
|
||||
},
|
||||
{ id: "1", name: "Sarah J.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-middle-aged-man-using-tablet-street-cafe_1262-19056.jpg" },
|
||||
{ id: "2", name: "Michael K.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-businessman-sitting-desk-table-business-company-office_482257-16773.jpg" },
|
||||
{ id: "3", name: "David L.", imageSrc: "http://img.b2bpic.net/free-photo/confident-businessman-smiling_107420-84734.jpg" },
|
||||
{ id: "4", name: "Emily R.", imageSrc: "http://img.b2bpic.net/free-photo/stylish-young-man-brown-suit-posing_23-2152023595.jpg" },
|
||||
{ id: "5", name: "Alex B.", imageSrc: "http://img.b2bpic.net/free-photo/smiling-businessman-standing-airport-terminal_107420-85070.jpg" },
|
||||
]}
|
||||
cardTitle="Client Results"
|
||||
cardTag="Testimonials"
|
||||
@@ -142,31 +90,11 @@ export default function LandingPage() {
|
||||
description="We combine cutting-edge technology with deep domain expertise to deliver reliable results."
|
||||
tag="Advantages"
|
||||
features={[
|
||||
{
|
||||
icon: Shield,
|
||||
title: "Secure Infrastructure",
|
||||
description: "Enterprise-grade security for your automation workflows.",
|
||||
},
|
||||
{
|
||||
icon: Database,
|
||||
title: "Performance Focused",
|
||||
description: "High-efficiency systems designed to save time.",
|
||||
},
|
||||
{
|
||||
icon: Rocket,
|
||||
title: "Rapid Deployment",
|
||||
description: "Get your automations running in days, not months.",
|
||||
},
|
||||
{
|
||||
icon: LineChart,
|
||||
title: "Data Driven",
|
||||
description: "Informed decisions through intelligent analytics.",
|
||||
},
|
||||
{
|
||||
icon: Users,
|
||||
title: "Expert Team",
|
||||
description: "Guided by industry leaders in AI automation.",
|
||||
},
|
||||
{ icon: Shield, title: "Secure Infrastructure", description: "Enterprise-grade security for your automation workflows." },
|
||||
{ icon: Database, title: "Performance Focused", description: "High-efficiency systems designed to save time." },
|
||||
{ icon: Rocket, title: "Rapid Deployment", description: "Get your automations running in days, not months." },
|
||||
{ icon: LineChart, title: "Data Driven", description: "Informed decisions through intelligent analytics." },
|
||||
{ icon: Users, title: "Expert Team", description: "Guided by industry leaders in AI automation." },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -179,31 +107,11 @@ export default function LandingPage() {
|
||||
description="Everything you need to know about our AI implementation process."
|
||||
faqsAnimation="slide-up"
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "How do you start a project?",
|
||||
content: "We begin with a discovery call to audit your current workflows and identify the highest ROI automation opportunities.",
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
title: "What tools do you use?",
|
||||
content: "We specialize in n8n, OpenAI, Vector Databases, and custom web integration tools tailored to your existing tech stack.",
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
title: "How is maintenance handled?",
|
||||
content: "We provide ongoing support packages to monitor your automations and ensure they evolve with your business growth.",
|
||||
},
|
||||
{
|
||||
id: "f4",
|
||||
title: "Is my data secure?",
|
||||
content: "Yes, security is our top priority. We implement encryption and strict access controls compliant with modern data protection standards.",
|
||||
},
|
||||
{
|
||||
id: "f5",
|
||||
title: "Can you scale up later?",
|
||||
content: "Absolutely. Our modular architecture is designed to expand as your requirements and business complexity grow.",
|
||||
},
|
||||
{ id: "f1", title: "How do you start a project?", content: "We begin with a discovery call to audit your current workflows and identify the highest ROI automation opportunities." },
|
||||
{ id: "f2", title: "What tools do you use?", content: "We specialize in n8n, OpenAI, Vector Databases, and custom web integration tools tailored to your existing tech stack." },
|
||||
{ id: "f3", title: "How is maintenance handled?", content: "We provide ongoing support packages to monitor your automations and ensure they evolve with your business growth." },
|
||||
{ id: "f4", title: "Is my data secure?", content: "Yes, security is our top priority. We implement encryption and strict access controls compliant with modern data protection standards." },
|
||||
{ id: "f5", title: "Can you scale up later?", content: "Absolutely. Our modular architecture is designed to expand as your requirements and business complexity grow." },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -211,30 +119,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Case Studies",
|
||||
href: "/case-studies",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "Services", href: "/services" }, { label: "Case Studies", href: "/case-studies" }] },
|
||||
{ items: [{ label: "Contact", href: "/contact" }, { label: "About", href: "/about" }] },
|
||||
]}
|
||||
logoText="AI Agency"
|
||||
/>
|
||||
@@ -242,4 +128,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -8,7 +8,7 @@ import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import { Clock, DollarSign } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ServicesPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="icon-arrow"
|
||||
@@ -26,28 +26,14 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "Case Studies",
|
||||
id: "/case-studies",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Book a Call",
|
||||
id: "/contact",
|
||||
},
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Case Studies", id: "/case-studies" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Book a Call", id: "/contact" },
|
||||
]}
|
||||
brandName="AI Agency"
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -56,21 +42,9 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "n8n Workflow Automation",
|
||||
description: "Streamline operations with custom integration flows.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/mouse-close_1160-365.jpg",
|
||||
},
|
||||
{
|
||||
title: "AI Agents Development",
|
||||
description: "Autonomous agents that handle complex business tasks.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/robot-defending-against-virus-attack_1048-12079.jpg",
|
||||
},
|
||||
{
|
||||
title: "AI Business Automations",
|
||||
description: "End-to-end automation strategies for scalability.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/3d-render-network-communications-background-with-flowing-digital-particles_1048-15686.jpg",
|
||||
},
|
||||
{ title: "n8n Workflow Automation", description: "Streamline operations with custom integration flows.", imageSrc: "http://img.b2bpic.net/free-photo/mouse-close_1160-365.jpg" },
|
||||
{ title: "AI Agents Development", description: "Autonomous agents that handle complex business tasks.", imageSrc: "http://img.b2bpic.net/free-photo/robot-defending-against-virus-attack_1048-12079.jpg" },
|
||||
{ title: "AI Business Automations", description: "End-to-end automation strategies for scalability.", imageSrc: "http://img.b2bpic.net/free-photo/3d-render-network-communications-background-with-flowing-digital-particles_1048-15686.jpg" },
|
||||
]}
|
||||
title="Our AI Services"
|
||||
description="Comprehensive automation solutions to scale your operations."
|
||||
@@ -85,18 +59,8 @@ export default function LandingPage() {
|
||||
title="Efficiency Metrics"
|
||||
description="Quantifiable gains delivered through our automation frameworks."
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
icon: Clock,
|
||||
title: "Average Time Savings",
|
||||
value: "40%",
|
||||
},
|
||||
{
|
||||
id: "m2",
|
||||
icon: DollarSign,
|
||||
title: "Operational Cost Reduction",
|
||||
value: "25%",
|
||||
},
|
||||
{ id: "m1", icon: Clock, title: "Average Time Savings", value: "40%" },
|
||||
{ id: "m2", icon: DollarSign, title: "Operational Cost Reduction", value: "25%" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -104,30 +68,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
{
|
||||
label: "Case Studies",
|
||||
href: "/case-studies",
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ items: [{ label: "Services", href: "/services" }, { label: "Case Studies", href: "/case-studies" }] },
|
||||
{ items: [{ label: "Contact", href: "/contact" }, { label: "About", href: "/about" }] },
|
||||
]}
|
||||
logoText="AI Agency"
|
||||
/>
|
||||
@@ -135,4 +77,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user