175 lines
8.2 KiB
TypeScript
175 lines
8.2 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
|
import HeroSplitKpi from "@/components/sections/hero/HeroSplitKpi";
|
|
import FeatureCardTwelve from "@/components/sections/feature/FeatureCardTwelve";
|
|
import ProductCardOne from "@/components/sections/product/ProductCardOne";
|
|
import MetricCardThree from "@/components/sections/metrics/MetricCardThree";
|
|
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
|
import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
|
|
import { Zap, TrendingUp, Clock, Plug } from "lucide-react";
|
|
|
|
export default function IntegrationsPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="bounce-effect"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="rounded"
|
|
contentWidth="compact"
|
|
sizing="largeSmall"
|
|
background="blurBottom"
|
|
cardStyle="outline"
|
|
primaryButtonStyle="radial-glow"
|
|
secondaryButtonStyle="glass"
|
|
headingFontWeight="medium"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingOverlay
|
|
brandName="Abdul Rafay"
|
|
navItems={[
|
|
{ name: "Work", id: "projects" },
|
|
{ name: "Services", id: "services" },
|
|
{ name: "About", id: "about" },
|
|
{ name: "Contact", id: "contact" }
|
|
]}
|
|
button={{
|
|
text: "Contact", href: "#contact"
|
|
}}
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroSplitKpi
|
|
title="Seamless Integrations & AI Tools"
|
|
description="Connect your entire business ecosystem with powerful API integrations and AI tool implementations. We build bridges between your systems, enabling data flow, automation, and intelligent decision-making across your entire operation."
|
|
background={{ variant: "glowing-orb" }}
|
|
kpis={[
|
|
{ value: "50+", label: "Platform Integrations" },
|
|
{ value: "99.9%", label: "API Uptime" },
|
|
{ value: "Real-time", label: "Data Sync" }
|
|
]}
|
|
enableKpiAnimation={true}
|
|
tag="Integration Specialist"
|
|
tagAnimation="slide-up"
|
|
buttons={[
|
|
{ text: "View Integrations", href: "#projects" }
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AndPFbpHqBEtlv0fG4wek8eWPV/modern-web-interface-for-an-ai-content-g-1773232936048-fda19c95.png?_wi=1"
|
|
imageAlt="Integration Platform Interface"
|
|
imagePosition="right"
|
|
mediaAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="services" data-section="services">
|
|
<FeatureCardTwelve
|
|
title="Integration & AI Services"
|
|
description="Comprehensive integration solutions and AI implementations for enterprise systems."
|
|
tag="Integration Types"
|
|
tagAnimation="slide-up"
|
|
features={[
|
|
{
|
|
id: "api-integration", label: "API Integration", title: "Custom API Integrations", items: [
|
|
"RESTful and GraphQL API development", "Third-party API connections", "Webhook implementation and management", "Real-time data synchronization"
|
|
]
|
|
},
|
|
{
|
|
id: "ai-models", label: "AI Models", title: "AI Model Implementation", items: [
|
|
"LLM integration and fine-tuning", "Custom machine learning models", "Predictive analytics implementation", "Natural language processing solutions"
|
|
]
|
|
},
|
|
{
|
|
id: "platform-sync", label: "Platform Connectivity", title: "Multi-Platform Ecosystem Sync", items: [
|
|
"CRM to marketing automation sync", "ERP and accounting system integration", "E-commerce platform connections", "Analytics and BI tool integration"
|
|
]
|
|
},
|
|
{
|
|
id: "advanced-tooling", label: "Advanced Tools", title: "Advanced Automation Tooling", items: [
|
|
"No-code automation platform setup", "Custom webhook infrastructure", "Data transformation pipelines", "Real-time event processing"
|
|
]
|
|
}
|
|
]}
|
|
textboxLayout="default"
|
|
animationType="slide-up"
|
|
useInvertedBackground={false}
|
|
buttonAnimation="slide-up"
|
|
/>
|
|
</div>
|
|
|
|
<div id="projects" data-section="projects">
|
|
<ProductCardOne
|
|
title="Integration Projects"
|
|
description="Showcase of successful integrations and AI implementations across industries."
|
|
tag="Portfolio"
|
|
tagAnimation="slide-up"
|
|
products={[
|
|
{
|
|
id: "1", name: "Multi-Platform CRM Integration", price: "5+ systems", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AndPFbpHqBEtlv0fG4wek8eWPV/screenshot-of-a-sophisticated-automation-1773232936102-44b60f1d.png?_wi=1", imageAlt: "CRM Integration Architecture"
|
|
},
|
|
{
|
|
id: "2", name: "AI Content Processing Engine", price: "Custom LLM", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AndPFbpHqBEtlv0fG4wek8eWPV/modern-web-interface-for-an-ai-content-g-1773232936048-fda19c95.png?_wi=1", imageAlt: "AI Processing System"
|
|
},
|
|
{
|
|
id: "3", name: "Real-time Analytics Dashboard", price: "24/7 sync", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AndPFbpHqBEtlv0fG4wek8eWPV/screenshot-of-a-high-end-modern-business-1773232935942-84f134d4.png?_wi=1", imageAlt: "Real-time Analytics Platform"
|
|
}
|
|
]}
|
|
gridVariant="three-columns-all-equal-width"
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="metrics" data-section="metrics">
|
|
<MetricCardThree
|
|
title="Integration Results"
|
|
description="Proven outcomes from our integration and AI implementations."
|
|
tag="Results"
|
|
tagAnimation="slide-up"
|
|
metrics={[
|
|
{
|
|
id: "1", icon: Plug,
|
|
title: "System Connectivity", value: "99.9%"
|
|
},
|
|
{
|
|
id: "2", icon: TrendingUp,
|
|
title: "Data Accuracy", value: "99.8%"
|
|
},
|
|
{
|
|
id: "3", icon: Zap,
|
|
title: "Performance", value: "<100ms"
|
|
}
|
|
]}
|
|
textboxLayout="default"
|
|
animationType="slide-up"
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactCTA
|
|
tag="Ready to Integrate?"
|
|
tagAnimation="slide-up"
|
|
title="Connect Your Systems Today"
|
|
description="Let's build the integrations and AI solutions that will connect your entire business ecosystem and unlock new possibilities for growth and efficiency."
|
|
buttons={[
|
|
{ text: "Send Message", href: "mailto:your-email@example.com?subject=Integration%20Inquiry", onClick: () => window.open("https://mail.google.com/mail/u/0/#inbox?compose=CllgCKCJDpcNVLgLjnmzlfjhpdVpzlhHMczkBTgTPMlCJWbKpnvxftQMXCJXsLrmzvsghmMqHjV", "_blank") }
|
|
]}
|
|
buttonAnimation="slide-up"
|
|
background={{ variant: "animated-grid" }}
|
|
useInvertedBackground={false}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterLogoReveal
|
|
logoText="Abdul Rafay"
|
|
leftLink={{ text: "Privacy Policy", href: "#" }}
|
|
rightLink={{ text: "Terms of Service", href: "#" }}
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
} |