Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 957c89d792 | |||
| fe4c6f9973 | |||
| 1ad4120a6a | |||
| 9e4749b297 | |||
| adee8f7e44 | |||
| 06aad0510e | |||
| 470f660126 | |||
| 717e514925 | |||
| 9300eb4299 | |||
| 1c4465d7f9 | |||
| 31934fda19 | |||
| 24712d026c | |||
| 6ab8f41a9c | |||
| e92ba97905 |
@@ -3,8 +3,11 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||||
|
import TeamCardFive from '@/components/sections/team/TeamCardFive';
|
||||||
|
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
||||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
|
import { Target, Users, TrendingUp, ShieldCheck } from "lucide-react";
|
||||||
|
|
||||||
export default function AboutPage() {
|
export default function AboutPage() {
|
||||||
return (
|
return (
|
||||||
@@ -22,42 +25,67 @@ export default function AboutPage() {
|
|||||||
>
|
>
|
||||||
<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", id: "/" },
|
||||||
{ name: "About", id: "/about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Services", id: "/services" },
|
{ name: "Services", id: "/services" },
|
||||||
{ name: "Portfolio", id: "/portfolio" },
|
{ name: "Portfolio", id: "/portfolio" },
|
||||||
{ name: "Contact", id: "/contact" },
|
{ name: "Contact", id: "/contact" },
|
||||||
]}
|
]}
|
||||||
brandName="AiViqo"
|
brandName="AiViqo"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about-hero" data-section="about-hero">
|
||||||
<InlineImageSplitTextAbout
|
<TextSplitAbout
|
||||||
useInvertedBackground={false}
|
title="Pioneering the Next Generation of Enterprise AI"
|
||||||
heading={[
|
description={[
|
||||||
{ type: 'text', content: "Driven by Innovation, " },
|
"AiViqo was founded on a simple premise: technology should serve business goals, not create more friction.", "Our mission is to bridge the gap between high-complexity business requirements and elegant, automated workflows. We don't just implement software; we engineer growth ecosystems."
|
||||||
{ type: 'image', src: "http://img.b2bpic.net/free-photo/diverse-business-team-working-together_23-2149520445.jpg", alt: "Founder Team" },
|
]}
|
||||||
{ type: 'text', content: " Built for Scale." }
|
useInvertedBackground={false}
|
||||||
]}
|
/>
|
||||||
/>
|
</div>
|
||||||
<div className="px-6 py-12 space-y-8">
|
|
||||||
<h2 className="text-3xl font-bold">Our Journey</h2>
|
<div id="metrics" data-section="metrics">
|
||||||
<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>
|
<MetricCardThree
|
||||||
<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>
|
title="Our Impact"
|
||||||
</div>
|
description="Data-driven results that define our excellence."
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
metrics={[
|
||||||
|
{ id: "1", icon: Target, title: "Processes Automated", value: "500+" },
|
||||||
|
{ id: "2", icon: Users, title: "Businesses Scaled", value: "150+" },
|
||||||
|
{ id: "3", icon: TrendingUp, title: "Growth Efficiency", value: "3.5x" },
|
||||||
|
{ id: "4", icon: ShieldCheck, title: "System Uptime", value: "99.9%" }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="team" data-section="team">
|
||||||
|
<TeamCardFive
|
||||||
|
title="Meet the Architects"
|
||||||
|
description="The diverse team of experts behind AiViqo."
|
||||||
|
animationType="blur-reveal"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
team={[
|
||||||
|
{ id: "1", name: "Alex Rivers", role: "Founder & CEO", imageSrc: "http://img.b2bpic.net/free-photo/portrait-businessman-with-glasses-standing-office-copy-space_23-2148782068.jpg" },
|
||||||
|
{ id: "2", name: "Maya Chen", role: "Head of AI Operations", imageSrc: "http://img.b2bpic.net/free-photo/smiling-business-woman-using-laptop_23-2148855663.jpg" },
|
||||||
|
{ id: "3", name: "Sam Thorne", role: "Lead Systems Architect", imageSrc: "http://img.b2bpic.net/free-photo/confident-man-suit-posing-office_23-2148753265.jpg" }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
columns={[
|
columns={[
|
||||||
{ items: [{ label: "About", href: "/about" }, { label: "Services", href: "/services" }] },
|
{ items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }] },
|
||||||
{ items: [{ label: "Contact", href: "/contact" }, { label: "Portfolio", href: "/portfolio" }] },
|
{ items: [{ label: "Contact", href: "/contact" }, { label: "Portfolio", href: "/portfolio" }] },
|
||||||
]}
|
]}
|
||||||
logoText="AiViqo"
|
logoText="AiViqo"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
@@ -2,9 +2,9 @@
|
|||||||
|
|
||||||
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 NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis";
|
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||||
|
|
||||||
export default function ContactPage() {
|
export default function ContactPage() {
|
||||||
return (
|
return (
|
||||||
@@ -22,50 +22,36 @@ export default function ContactPage() {
|
|||||||
>
|
>
|
||||||
<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", id: "/" },
|
||||||
{ name: "About", id: "/about" },
|
{ name: "About", id: "/about" },
|
||||||
{ name: "Services", id: "/services" },
|
{ name: "Services", id: "/services" },
|
||||||
{ name: "Portfolio", id: "/portfolio" },
|
{ name: "Portfolio", id: "/portfolio" },
|
||||||
{ name: "Contact", id: "/contact" },
|
{ name: "Contact", id: "/contact" },
|
||||||
]}
|
]}
|
||||||
brandName="AiViqo"
|
brandName="AiViqo"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplit
|
<ContactSplit
|
||||||
tag="Contact Us"
|
tag="Get in Touch"
|
||||||
title="Let's build your AI future"
|
title="Start Your Digital Transformation"
|
||||||
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."
|
description="Tell us about your project requirements. Fill out the details below, and our team will get back to you to discuss your business automation goals."
|
||||||
background={{ variant: "gradient-bars" }}
|
background={{ variant: 'plain' }}
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
inputPlaceholder="Enter your professional email"
|
/>
|
||||||
buttonText="Send Inquiry"
|
|
||||||
mediaAnimation="blur-reveal"
|
|
||||||
mediaPosition="right"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{ items: [{ label: "About", href: "/about" }, { label: "Services", href: "/services" }] },
|
||||||
items: [
|
{ items: [{ label: "Contact", href: "/contact" }, { label: "Portfolio", href: "/portfolio" }] },
|
||||||
{ label: "About", href: "/about" },
|
]}
|
||||||
{ label: "Services", href: "/services" },
|
logoText="AiViqo"
|
||||||
],
|
/>
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{ label: "Contact", href: "/contact" },
|
|
||||||
{ label: "Portfolio", href: "/portfolio" },
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
logoText="AiViqo"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
|
|||||||
155
src/app/page.tsx
155
src/app/page.tsx
@@ -9,7 +9,9 @@ import HeroCentered from '@/components/sections/hero/HeroCentered';
|
|||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||||
import TextAbout from '@/components/sections/about/TextAbout';
|
import TextAbout from '@/components/sections/about/TextAbout';
|
||||||
import { Database, Mail, Zap } from "lucide-react";
|
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
|
||||||
|
import FeatureBento from '@/components/sections/feature/FeatureBento';
|
||||||
|
import { Database, Mail, Zap, Target, Cpu, BarChart3, ShieldCheck, Rocket, ChevronRight } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -29,16 +31,11 @@ export default function LandingPage() {
|
|||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{ name: "Home", id: "/" },
|
||||||
name: "Home", id: "/"},
|
{ name: "About", id: "/about" },
|
||||||
{
|
{ name: "Services", id: "/services" },
|
||||||
name: "About", id: "/about"},
|
{ name: "Pricing", id: "/pricing" },
|
||||||
{
|
{ name: "Contact", id: "/contact" },
|
||||||
name: "Services", id: "/services"},
|
|
||||||
{
|
|
||||||
name: "Portfolio", id: "/portfolio"},
|
|
||||||
{
|
|
||||||
name: "Contact", id: "/contact"},
|
|
||||||
]}
|
]}
|
||||||
brandName="AiViqo"
|
brandName="AiViqo"
|
||||||
/>
|
/>
|
||||||
@@ -46,39 +43,51 @@ 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", alt: "business man portrait" },
|
||||||
src: "http://img.b2bpic.net/free-photo/business-man-banner-concept-with-copy-space_23-2149601461.jpg", alt: "business man portrait"},
|
{ src: "http://img.b2bpic.net/free-photo/portrait-handsome-businessman-wearing-glasses_329181-677.jpg", alt: "Portrait of handsome businessman wearing glasses" },
|
||||||
{
|
{ src: "http://img.b2bpic.net/free-photo/cheerful-young-businesswoman-smiling-camera_74855-4022.jpg", alt: "Cheerful young businesswoman smiling at camera" },
|
||||||
src: "http://img.b2bpic.net/free-photo/portrait-handsome-businessman-wearing-glasses_329181-677.jpg", alt: "Portrait of handsome businessman wearing glasses"},
|
|
||||||
{
|
|
||||||
src: "http://img.b2bpic.net/free-photo/cheerful-young-businesswoman-smiling-camera_74855-4022.jpg", 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", 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", alt: "Medium shot female economist working in office"},
|
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{ text: "Book Strategy Call", href: "https://calendly.com/visuallabstudios/30min" },
|
||||||
text: "Book Strategy Call", href: "https://calendly.com/visuallabstudios/30min"},
|
{ text: "View Services", href: "/services" },
|
||||||
{
|
|
||||||
text: "View Services", href: "/services"},
|
|
||||||
]}
|
]}
|
||||||
marqueeItems={[
|
/>
|
||||||
{
|
</div>
|
||||||
type: "text", text: "Enterprise Ready"},
|
|
||||||
{
|
<div id="benefits" data-section="benefits">
|
||||||
type: "text", text: "AI-Powered CRM"},
|
<FeatureBento
|
||||||
{
|
title="Why Choose AiViqo?"
|
||||||
type: "text", text: "Automated Scaling"},
|
description="Unlock the true potential of your business with our tailored intelligent solutions."
|
||||||
{
|
textboxLayout="split"
|
||||||
type: "text", text: "Data Security"},
|
useInvertedBackground={false}
|
||||||
{
|
animationType="slide-up"
|
||||||
type: "text", text: "Real-time Analytics"},
|
features={[
|
||||||
|
{ title: "Enhanced Efficiency", description: "Automate repetitive tasks to focus on strategy.", bentoComponent: "reveal-icon", icon: Zap },
|
||||||
|
{ title: "Smart CRM Integration", description: "Seamless data flow between your core platforms.", bentoComponent: "reveal-icon", icon: Database },
|
||||||
|
{ title: "High-Quality Leads", description: "Intelligent prospecting that yields results.", bentoComponent: "reveal-icon", icon: Target },
|
||||||
|
{ title: "Predictive Modeling", description: "Data-driven insights for smarter growth.", bentoComponent: "reveal-icon", icon: BarChart3 },
|
||||||
|
{ title: "AI-Powered Agents", description: "Custom bots built for your specific workflow.", bentoComponent: "reveal-icon", icon: Cpu },
|
||||||
|
{ title: "Enterprise Security", description: "Robust protection for all your sensitive data.", bentoComponent: "reveal-icon", icon: ShieldCheck },
|
||||||
|
{ title: "Rapid Scaling", description: "Systems engineered to grow with you.", bentoComponent: "reveal-icon", icon: Rocket },
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="pricing" data-section="pricing">
|
||||||
|
<PricingCardEight
|
||||||
|
title="Plans Built for Scale"
|
||||||
|
description="Transparent pricing designed for modern businesses."
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
animationType="slide-up"
|
||||||
|
plans={[
|
||||||
|
{ id: "starter", badge: "Starter", price: "$999", subtitle: "For growing teams", buttons: [{ text: "Get Started" }], features: ["CRM Setup", "Workflow Automations", "Email Support"] },
|
||||||
|
{ id: "pro", badge: "Professional", price: "$2999", subtitle: "Full-scale automation", buttons: [{ text: "Choose Pro" }], features: ["Starter Features", "AI Agents", "Priority 24/7 Support", "Custom Data Pipeline"] },
|
||||||
|
{ id: "enterprise", badge: "Enterprise", price: "Custom", subtitle: "Bespoke solutions", buttons: [{ text: "Contact Sales" }], features: ["Pro Features", "Dedicated Account Manager", "Custom Model Training", "SLA Guarantees"] }
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -87,10 +96,7 @@ export default function LandingPage() {
|
|||||||
<TextAbout
|
<TextAbout
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="We engineer the systems that scale your enterprise."
|
title="We engineer the systems that scale your enterprise."
|
||||||
buttons={[
|
buttons={[{ text: "Read Full Story", href: "/about" }]}
|
||||||
{
|
|
||||||
text: "Read Full Story", href: "/about"},
|
|
||||||
]}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -100,15 +106,9 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{ icon: Zap, title: "AI Lead Generation", description: "High-intent lead sourcing automated through AI." },
|
||||||
icon: Zap,
|
{ icon: Database, title: "Custom AI Agents", description: "Bespoke agents integrated into your existing tech stack." },
|
||||||
title: "AI Lead Generation", description: "High-intent lead sourcing automated through AI."},
|
{ icon: Mail, title: "Workflow Automation", description: "Streamlining outreach, CRM entry, and data management." },
|
||||||
{
|
|
||||||
icon: Database,
|
|
||||||
title: "Custom AI Agents", description: "Bespoke agents integrated into your existing tech stack."},
|
|
||||||
{
|
|
||||||
icon: Mail,
|
|
||||||
title: "Workflow Automation", 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."
|
||||||
@@ -122,63 +122,20 @@ export default function LandingPage() {
|
|||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="uniform-all-items-equal"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{ id: "1", name: "Sarah Johnson", role: "CEO", company: "TechCorp", rating: 5 },
|
||||||
id: "1", name: "Sarah Johnson", role: "CEO", company: "TechCorp", rating: 5,
|
{ id: "2", name: "Michael Chen", role: "CTO", company: "InnovateLab", 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: "3", name: "Emily Rodriguez", role: "Director", company: "GrowthCo", rating: 5 },
|
||||||
{
|
|
||||||
id: "2", name: "Michael Chen", 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", name: "Emily Rodriguez", 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", name: "David Kim", 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", name: "Alex Smith", 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."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="feature" data-section="feature">
|
|
||||||
<FeatureCardThree
|
|
||||||
animationType="slide-up"
|
|
||||||
textboxLayout="default"
|
|
||||||
gridVariant="uniform-all-items-equal"
|
|
||||||
useInvertedBackground={false}
|
|
||||||
title="Precision Engineered AI"
|
|
||||||
description="Delivering high-performance automation for complex enterprise environments."
|
|
||||||
features={[
|
|
||||||
{
|
|
||||||
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"},
|
|
||||||
{
|
|
||||||
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"},
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{ items: [{ label: "About", href: "/about" }, { label: "Services", href: "/services" }] },
|
||||||
items: [
|
{ items: [{ label: "Pricing", href: "/pricing" }, { label: "Contact", href: "/contact" }] },
|
||||||
{
|
|
||||||
label: "About", href: "/about"},
|
|
||||||
{
|
|
||||||
label: "Services", href: "/services"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Contact", href: "/contact"},
|
|
||||||
{
|
|
||||||
label: "Portfolio", href: "/portfolio"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
logoText="AiViqo"
|
logoText="AiViqo"
|
||||||
/>
|
/>
|
||||||
|
|||||||
@@ -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 ProductCatalog from '@/components/ecommerce/productCatalog/ProductCatalog';
|
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
|
||||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function PortfolioPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="hover-magnetic"
|
defaultButtonVariant="hover-magnetic"
|
||||||
@@ -22,101 +21,44 @@ 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="ecommerce" data-section="ecommerce">
|
<div id="projects" data-section="projects">
|
||||||
<ProductCatalog
|
<FeatureCardOne
|
||||||
layout="page"
|
title="Our Selected Projects"
|
||||||
products={[
|
description="Showcasing bespoke AI implementations and enterprise-scale automation results."
|
||||||
{
|
gridVariant="three-columns-all-equal-width"
|
||||||
id: "1",
|
animationType="blur-reveal"
|
||||||
name: "Automation Suite A",
|
textboxLayout="default"
|
||||||
price: "Custom",
|
useInvertedBackground={false}
|
||||||
rating: 5,
|
features={[
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-african-man-sitting-table-office-while-his-subordinates-working-new-sale-strategy-indoor-portrait-business-people-international-company-posing-work-process_197531-3746.jpg",
|
{ title: "AI CRM Integration", description: "Automated lead management and data pipeline efficiency.", 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: "Automated Outreach", description: "High-intent lead generation via custom AI agents.", 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" },
|
||||||
{
|
{ title: "Data Analytics Dashboard", description: "Predictive insights powered by machine learning models.", 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",
|
]}
|
||||||
name: "Data Agent B",
|
/>
|
||||||
price: "Custom",
|
</div>
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/african-american-male-professional-works-desk-corporation_482257-122689.jpg",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</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="Recent Projects"
|
{ items: [{ label: "Contact", href: "/contact" }, { label: "Portfolio", href: "/portfolio" }] },
|
||||||
description="Delivering excellence across industries."
|
]}
|
||||||
names={[
|
logoText="AiViqo"
|
||||||
"Finance Corp",
|
/>
|
||||||
"Health Systems",
|
</div>
|
||||||
"Retail Hub",
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</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>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user