Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0eb6e80a8b | |||
| 15632c103f | |||
| 56fa625c53 | |||
| 87541f7996 | |||
| 0e6337c2b5 |
@@ -2,12 +2,11 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function AboutPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="hover-magnetic"
|
defaultButtonVariant="hover-magnetic"
|
||||||
@@ -22,93 +21,45 @@ export default function LandingPage() {
|
|||||||
headingFontWeight="light"
|
headingFontWeight="light"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "Home", id: "/" },
|
||||||
name: "Home",
|
{ name: "About", id: "/about" },
|
||||||
id: "/",
|
{ name: "Services", id: "/services" },
|
||||||
},
|
{ name: "Portfolio", id: "/portfolio" },
|
||||||
{
|
{ name: "Contact", id: "/contact" },
|
||||||
name: "About",
|
]}
|
||||||
id: "/about",
|
brandName="AiViqo"
|
||||||
},
|
/>
|
||||||
{
|
</div>
|
||||||
name: "Services",
|
|
||||||
id: "/services",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Portfolio",
|
|
||||||
id: "/portfolio",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Contact",
|
|
||||||
id: "/contact",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
brandName="AiViqo"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<TextSplitAbout
|
<InlineImageSplitTextAbout
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Our Philosophy"
|
heading={[
|
||||||
description={[
|
{ type: 'text', content: "Driven by Innovation, " },
|
||||||
"At AiViqo, we prioritize efficiency above all else.",
|
{ type: 'image', src: "http://img.b2bpic.net/free-photo/diverse-business-team-working-together_23-2149520445.jpg", alt: "Founder Team" },
|
||||||
"AI is not just a tool; it is a fundamental shift in business operations.",
|
{ type: 'text', content: " Built for Scale." }
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
<div className="px-6 py-12 space-y-8">
|
||||||
|
<h2 className="text-3xl font-bold">Our Journey</h2>
|
||||||
|
<p className="text-lg leading-relaxed">Founded by industry veterans with a shared vision, AiViqo began as a small boutique consultancy focused on solving the most complex automation bottlenecks for mid-market firms. Over the years, we have transformed into an enterprise-grade AI partner, serving clients across North America and Europe.</p>
|
||||||
|
<p className="text-lg leading-relaxed">Our leadership team brings decades of combined experience in software engineering, data science, and business operations. We believe that technology should serve business goals, not dictate them, and we remain committed to creating transparent, high-ROI AI solutions.</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="socialProof" data-section="socialProof">
|
<div id="footer" data-section="footer">
|
||||||
<SocialProofOne
|
<FooterLogoEmphasis
|
||||||
textboxLayout="default"
|
columns={[
|
||||||
useInvertedBackground={false}
|
{ items: [{ label: "About", href: "/about" }, { label: "Services", href: "/services" }] },
|
||||||
title="Trusted by Leaders"
|
{ items: [{ label: "Contact", href: "/contact" }, { label: "Portfolio", href: "/portfolio" }] },
|
||||||
description="We partner with forward-thinking enterprises."
|
]}
|
||||||
names={[
|
logoText="AiViqo"
|
||||||
"Enterprise Alpha",
|
/>
|
||||||
"Global Tech Inc",
|
</div>
|
||||||
"Innovation Labs",
|
|
||||||
"Growth Corp",
|
|
||||||
"NextGen Solutions",
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
|
||||||
<FooterLogoEmphasis
|
|
||||||
columns={[
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "About",
|
|
||||||
href: "/about",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Services",
|
|
||||||
href: "/services",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Contact",
|
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Portfolio",
|
|
||||||
href: "/portfolio",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
logoText="AiViqo"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -2,12 +2,11 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
||||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function ContactPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="hover-magnetic"
|
defaultButtonVariant="hover-magnetic"
|
||||||
@@ -22,92 +21,53 @@ export default function LandingPage() {
|
|||||||
headingFontWeight="light"
|
headingFontWeight="light"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "Home", id: "/" },
|
||||||
name: "Home",
|
{ name: "About", id: "/about" },
|
||||||
id: "/",
|
{ name: "Services", id: "/services" },
|
||||||
},
|
{ name: "Portfolio", id: "/portfolio" },
|
||||||
{
|
{ name: "Contact", id: "/contact" },
|
||||||
name: "About",
|
]}
|
||||||
id: "/about",
|
brandName="AiViqo"
|
||||||
},
|
/>
|
||||||
{
|
</div>
|
||||||
name: "Services",
|
|
||||||
id: "/services",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Portfolio",
|
|
||||||
id: "/portfolio",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Contact",
|
|
||||||
id: "/contact",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
brandName="AiViqo"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplit
|
<ContactSplit
|
||||||
useInvertedBackground={false}
|
tag="Contact Us"
|
||||||
background={{
|
title="Let's build your AI future"
|
||||||
variant: "canvas-reveal",
|
description="Ready to automate your business processes and scale faster? Our team of experts is ready to help you implement a tailored strategy that delivers measurable results."
|
||||||
}}
|
background={{ variant: "gradient-bars" }}
|
||||||
tag="Get in touch"
|
useInvertedBackground={false}
|
||||||
title="Ready to scale your business?"
|
inputPlaceholder="Enter your professional email"
|
||||||
description="Reach out to our engineering team today."
|
buttonText="Send Inquiry"
|
||||||
mediaAnimation="blur-reveal"
|
mediaAnimation="blur-reveal"
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/contemporary-room-workplace-office-supplies-concept_53876-31812.jpg"
|
mediaPosition="right"
|
||||||
imageAlt="Contemporary Room Workplace Office Supplies Concept"
|
/>
|
||||||
/>
|
</div>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="footer" data-section="footer">
|
||||||
<TextSplitAbout
|
<FooterLogoEmphasis
|
||||||
useInvertedBackground={false}
|
columns={[
|
||||||
title="Office Hours"
|
{
|
||||||
description={[
|
items: [
|
||||||
"Monday - Friday",
|
{ label: "About", href: "/about" },
|
||||||
"9:00 AM - 6:00 PM EST",
|
{ label: "Services", href: "/services" },
|
||||||
]}
|
],
|
||||||
/>
|
},
|
||||||
</div>
|
{
|
||||||
|
items: [
|
||||||
<div id="footer" data-section="footer">
|
{ label: "Contact", href: "/contact" },
|
||||||
<FooterLogoEmphasis
|
{ label: "Portfolio", href: "/portfolio" },
|
||||||
columns={[
|
],
|
||||||
{
|
},
|
||||||
items: [
|
]}
|
||||||
{
|
logoText="AiViqo"
|
||||||
label: "About",
|
/>
|
||||||
href: "/about",
|
</div>
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Services",
|
|
||||||
href: "/services",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Contact",
|
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Portfolio",
|
|
||||||
href: "/portfolio",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
logoText="AiViqo"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
160
src/app/page.tsx
160
src/app/page.tsx
@@ -30,25 +30,15 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "/"},
|
||||||
id: "/",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About",
|
name: "About", id: "/about"},
|
||||||
id: "/about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Services",
|
name: "Services", id: "/services"},
|
||||||
id: "/services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Portfolio",
|
name: "Portfolio", id: "/portfolio"},
|
||||||
id: "/portfolio",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "/contact"},
|
||||||
id: "/contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="AiViqo"
|
brandName="AiViqo"
|
||||||
/>
|
/>
|
||||||
@@ -57,63 +47,38 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroCentered
|
<HeroCentered
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "gradient-bars"}}
|
||||||
}}
|
|
||||||
title="Intelligent Automation for Fast-Growing Businesses"
|
title="Intelligent Automation for Fast-Growing Businesses"
|
||||||
description="AiViqo accelerates your business through bespoke AI workflows, CRM automation, and high-performance lead generation systems."
|
description="AiViqo accelerates your business through bespoke AI workflows, CRM automation, and high-performance lead generation systems."
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/business-man-banner-concept-with-copy-space_23-2149601461.jpg",
|
src: "http://img.b2bpic.net/free-photo/business-man-banner-concept-with-copy-space_23-2149601461.jpg", alt: "business man portrait"},
|
||||||
alt: "business man portrait",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/portrait-handsome-businessman-wearing-glasses_329181-677.jpg",
|
src: "http://img.b2bpic.net/free-photo/portrait-handsome-businessman-wearing-glasses_329181-677.jpg", alt: "Portrait of handsome businessman wearing glasses"},
|
||||||
alt: "Portrait of handsome businessman wearing glasses",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/cheerful-young-businesswoman-smiling-camera_74855-4022.jpg",
|
src: "http://img.b2bpic.net/free-photo/cheerful-young-businesswoman-smiling-camera_74855-4022.jpg", alt: "Cheerful young businesswoman smiling at camera"},
|
||||||
alt: "Cheerful young businesswoman smiling at camera",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/closeup-handsome-young-office-worker-glasses-suit-smiling-camera-looking-happy-white_1258-173667.jpg",
|
src: "http://img.b2bpic.net/free-photo/closeup-handsome-young-office-worker-glasses-suit-smiling-camera-looking-happy-white_1258-173667.jpg", alt: "Closeup of handsome young office worker in glasses and suit smiling at camera"},
|
||||||
alt: "Closeup of handsome young office worker in glasses and suit smiling at camera",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/medium-shot-female-economist-working-office_23-2150251746.jpg",
|
src: "http://img.b2bpic.net/free-photo/medium-shot-female-economist-working-office_23-2150251746.jpg", alt: "Medium shot female economist working in office"},
|
||||||
alt: "Medium shot female economist working in office",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Book Strategy Call",
|
text: "Book Strategy Call", href: "https://calendly.com/visuallabstudios/30min"},
|
||||||
href: "https://calendly.com/visuallabstudios/30min",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "View Services",
|
text: "View Services", href: "/services"},
|
||||||
href: "/services",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
marqueeItems={[
|
marqueeItems={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Enterprise Ready"},
|
||||||
text: "Enterprise Ready",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "AI-Powered CRM"},
|
||||||
text: "AI-Powered CRM",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Automated Scaling"},
|
||||||
text: "Automated Scaling",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Data Security"},
|
||||||
text: "Data Security",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Real-time Analytics"},
|
||||||
text: "Real-time Analytics",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -124,9 +89,7 @@ export default function LandingPage() {
|
|||||||
title="We engineer the systems that scale your enterprise."
|
title="We engineer the systems that scale your enterprise."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Read Full Story",
|
text: "Read Full Story", href: "/about"},
|
||||||
href: "/about",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -139,19 +102,13 @@ export default function LandingPage() {
|
|||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
icon: Zap,
|
icon: Zap,
|
||||||
title: "AI Lead Generation",
|
title: "AI Lead Generation", description: "High-intent lead sourcing automated through AI."},
|
||||||
description: "High-intent lead sourcing automated through AI.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Database,
|
icon: Database,
|
||||||
title: "Custom AI Agents",
|
title: "Custom AI Agents", description: "Bespoke agents integrated into your existing tech stack."},
|
||||||
description: "Bespoke agents integrated into your existing tech stack.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Mail,
|
icon: Mail,
|
||||||
title: "Workflow Automation",
|
title: "Workflow Automation", description: "Streamlining outreach, CRM entry, and data management."},
|
||||||
description: "Streamlining outreach, CRM entry, and data management.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Our Enterprise Solutions"
|
title="Our Enterprise Solutions"
|
||||||
description="Leveraging advanced AI to eliminate manual bottlenecks and maximize ROI."
|
description="Leveraging advanced AI to eliminate manual bottlenecks and maximize ROI."
|
||||||
@@ -166,45 +123,20 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Sarah Johnson", role: "CEO", company: "TechCorp", rating: 5,
|
||||||
name: "Sarah Johnson",
|
imageSrc: "http://img.b2bpic.net/free-photo/smiling-asian-freelance-developer-drawing-action-plan-flipchart-blonde-young-female-managers-looking-foreign-colleague-which-writing-something-board_197531-3769.jpg"},
|
||||||
role: "CEO",
|
|
||||||
company: "TechCorp",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-asian-freelance-developer-drawing-action-plan-flipchart-blonde-young-female-managers-looking-foreign-colleague-which-writing-something-board_197531-3769.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Michael Chen", role: "CTO", company: "InnovateLab", rating: 5,
|
||||||
name: "Michael Chen",
|
imageSrc: "http://img.b2bpic.net/free-photo/videographer-smiling-camera-working-computer-editing-video-footage-audio-app-sitting-mo_482257-2649.jpg"},
|
||||||
role: "CTO",
|
|
||||||
company: "InnovateLab",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/videographer-smiling-camera-working-computer-editing-video-footage-audio-app-sitting-mo_482257-2649.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Emily Rodriguez", role: "Director", company: "GrowthCo", rating: 5,
|
||||||
name: "Emily Rodriguez",
|
imageSrc: "http://img.b2bpic.net/free-photo/pretty-attractive-young-mixed-race-model-with-large-afro-wearing-navy-jacket-her-naked-body-shorts_633478-1216.jpg"},
|
||||||
role: "Director",
|
|
||||||
company: "GrowthCo",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/pretty-attractive-young-mixed-race-model-with-large-afro-wearing-navy-jacket-her-naked-body-shorts_633478-1216.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "David Kim", role: "Manager", company: "StartupXYZ", rating: 5,
|
||||||
name: "David Kim",
|
imageSrc: "http://img.b2bpic.net/free-photo/positive-business-team-discussing-report-sitting-meeting-table-with-monitor-holding-looking-documents-business-meeting-teamwork-concept_74855-11909.jpg"},
|
||||||
role: "Manager",
|
|
||||||
company: "StartupXYZ",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/positive-business-team-discussing-report-sitting-meeting-table-with-monitor-holding-looking-documents-business-meeting-teamwork-concept_74855-11909.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Alex Smith", role: "Head of Ops", company: "GlobalScale", rating: 5,
|
||||||
name: "Alex Smith",
|
imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businessman-posing-outside_74855-1183.jpg"},
|
||||||
role: "Head of Ops",
|
|
||||||
company: "GlobalScale",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/positive-confident-businessman-posing-outside_74855-1183.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="What Our Partners Say"
|
title="What Our Partners Say"
|
||||||
description="Enterprise-level results for innovative teams."
|
description="Enterprise-level results for innovative teams."
|
||||||
@@ -221,15 +153,9 @@ export default function LandingPage() {
|
|||||||
description="Delivering high-performance automation for complex enterprise environments."
|
description="Delivering high-performance automation for complex enterprise environments."
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Data Pipeline Orchestration",
|
title: "Data Pipeline Orchestration", description: "End-to-end data flow automation.", imageSrc: "http://img.b2bpic.net/free-photo/businessman-solving-startup-problems-with-laptop-archived-documents-looking-annual-statistics-report-find-issue-young-analyst-reviewing-papers-executive-strategy-plan_482257-65811.jpg"},
|
||||||
description: "End-to-end data flow automation.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/businessman-solving-startup-problems-with-laptop-archived-documents-looking-annual-statistics-report-find-issue-young-analyst-reviewing-papers-executive-strategy-plan_482257-65811.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Predictive Analytics",
|
title: "Predictive Analytics", description: "Forecast business growth with AI models.", imageSrc: "http://img.b2bpic.net/free-photo/company-managers-discussing-solution-businesspeople-gathering-meeting-room-watching-content-computer-monitor-together-business-communication-teamwork-concept_74855-11621.jpg"},
|
||||||
description: "Forecast business growth with AI models.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/company-managers-discussing-solution-businesspeople-gathering-meeting-room-watching-content-computer-monitor-together-business-communication-teamwork-concept_74855-11621.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -240,25 +166,17 @@ export default function LandingPage() {
|
|||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: "About",
|
label: "About", href: "/about"},
|
||||||
href: "/about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Services",
|
label: "Services", href: "/services"},
|
||||||
href: "/services",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: "Contact",
|
label: "Contact", href: "/contact"},
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Portfolio",
|
label: "Portfolio", href: "/portfolio"},
|
||||||
href: "/portfolio",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
@@ -268,4 +186,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -2,12 +2,12 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
|
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
|
||||||
|
import { Zap, Database, Mail, BarChart3, Bot, ShieldCheck } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function ServicesPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="hover-magnetic"
|
defaultButtonVariant="hover-magnetic"
|
||||||
@@ -22,99 +22,62 @@ export default function LandingPage() {
|
|||||||
headingFontWeight="light"
|
headingFontWeight="light"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "Home", id: "/" },
|
||||||
name: "Home",
|
{ name: "About", id: "/about" },
|
||||||
id: "/",
|
{ name: "Services", id: "/services" },
|
||||||
},
|
{ name: "Portfolio", id: "/portfolio" },
|
||||||
{
|
{ name: "Contact", id: "/contact" },
|
||||||
name: "About",
|
]}
|
||||||
id: "/about",
|
brandName="AiViqo"
|
||||||
},
|
/>
|
||||||
{
|
</div>
|
||||||
name: "Services",
|
|
||||||
id: "/services",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Portfolio",
|
|
||||||
id: "/portfolio",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Contact",
|
|
||||||
id: "/contact",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
brandName="AiViqo"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="feature" data-section="feature">
|
<div id="features" data-section="features">
|
||||||
<FeatureCardThree
|
<FeatureCardTwentyFour
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="default"
|
textboxLayout="split"
|
||||||
gridVariant="uniform-all-items-equal"
|
useInvertedBackground={false}
|
||||||
useInvertedBackground={false}
|
title="Our Suite of AI Solutions"
|
||||||
title="Our Services"
|
description="Comprehensive services designed to automate, scale, and secure your enterprise operations with cutting-edge AI technology."
|
||||||
description="Tailored automation strategies."
|
features={[
|
||||||
features={[
|
{
|
||||||
{
|
id: "1", title: "Intelligent Lead Gen", author: "Strategic Growth", description: "Automated high-intent lead identification and qualification using proprietary AI models to boost your sales pipeline conversion by up to 40%.", tags: ["Automation", "Sales"],
|
||||||
title: "Process Audit",
|
imageSrc: "https://img.b2bpic.net/free-photo/marketing-strategy-analysis-office_23-2148964522.jpg"},
|
||||||
description: "Identifying bottlenecks.",
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/manager-sitting-office_1098-22033.jpg",
|
id: "2", title: "Bespoke AI Agents", author: "System Integration", description: "Custom-built AI agents tailored for your specific workflows, seamlessly integrating into your CRM to automate repetitive tasks with precision.", tags: ["AI Agents", "Workflow"],
|
||||||
},
|
imageSrc: "https://img.b2bpic.net/free-photo/digital-data-processing_23-2148764032.jpg"},
|
||||||
{
|
{
|
||||||
title: "Deployment",
|
id: "3", title: "Workflow Orchestration", author: "Operations", description: "Streamlining your entire tech stack through unified workflow automation. We reduce manual data entry and connect disconnected systems.", tags: ["Ops", "Efficiency"],
|
||||||
description: "Seamless integration.",
|
imageSrc: "https://img.b2bpic.net/free-photo/office-data-management_23-2149123456.jpg"},
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/successful-businessman-imagines-great-career_1163-5478.jpg",
|
{
|
||||||
},
|
id: "4", title: "Predictive Analytics", author: "Data Intelligence", description: "Advanced data modeling that forecasts business trends and identifies opportunities for scaling before they manifest in your traditional reports.", tags: ["Data", "Analytics"],
|
||||||
]}
|
imageSrc: "https://img.b2bpic.net/free-photo/data-analysis-screen_23-2149021234.jpg"}
|
||||||
/>
|
]}
|
||||||
</div>
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="footer" data-section="footer">
|
||||||
<TextSplitAbout
|
<FooterLogoEmphasis
|
||||||
useInvertedBackground={false}
|
columns={[
|
||||||
title="Our Methodology"
|
{
|
||||||
description={[
|
items: [
|
||||||
"Iterative deployment.",
|
{ label: "About", href: "/about" },
|
||||||
"Constant monitoring.",
|
{ label: "Services", href: "/services" },
|
||||||
]}
|
],
|
||||||
/>
|
},
|
||||||
</div>
|
{
|
||||||
|
items: [
|
||||||
<div id="footer" data-section="footer">
|
{ label: "Contact", href: "/contact" },
|
||||||
<FooterLogoEmphasis
|
{ label: "Portfolio", href: "/portfolio" },
|
||||||
columns={[
|
],
|
||||||
{
|
},
|
||||||
items: [
|
]}
|
||||||
{
|
logoText="AiViqo"
|
||||||
label: "About",
|
/>
|
||||||
href: "/about",
|
</div>
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Services",
|
|
||||||
href: "/services",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Contact",
|
|
||||||
href: "/contact",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Portfolio",
|
|
||||||
href: "/portfolio",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
logoText="AiViqo"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user