Compare commits
39 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c2abcebf97 | |||
| ddb16dfe3e | |||
| 84d9d854c5 | |||
| a2f7dec124 | |||
| c9316200bc | |||
| 829e28d3db | |||
| 5d7d9e6d70 | |||
| b9cbc4bc31 | |||
| 48fa671989 | |||
| 016c5fe59e | |||
| 7a9471bbcc | |||
| c4cb9e3438 | |||
| c1ef6296f6 | |||
| 76587b91c3 | |||
| e36bddab82 | |||
| 993cf2a86a | |||
| f71c710c9b | |||
| 76f2e03a7d | |||
| 538169697d | |||
| ad9e417166 | |||
| 1db96cfe38 | |||
| 6dbc6e1a1d | |||
| 10b77ad533 | |||
| cb8a422a64 | |||
| fed5f4fed6 | |||
| 8aff14a23d | |||
| 0543a6a010 | |||
| 6cabc33779 | |||
| d8ee3f3e10 | |||
| 83e678982c | |||
| 4fc90a33a9 | |||
| 48815eef22 | |||
| f041297016 | |||
| 39df01732e | |||
| 28c59de6f9 | |||
| 7eae7ce77a | |||
| 7d7769d7dd | |||
| 30274fde5c | |||
| f9db7e5c1d |
@@ -102,4 +102,4 @@ export default function BlogPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,42 +1,25 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Montserrat } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
|
import "./styles/variables.css";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const montserrat = Montserrat({
|
const inter = Inter({
|
||||||
variable: "--font-montserrat", subsets: ["latin"],
|
variable: "--font-inter", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "AI Agents Platform | Intelligent Automation for Enterprise", description: "Deploy autonomous AI agents to automate complex workflows, reduce costs, and accelerate business growth. Start your free trial today.", keywords: "AI agents, automation, intelligent automation, machine learning, business automation, workflow automation, enterprise AI, no-code automation", robots: {
|
title: "AIAgents - Intelligent Automation Platform", description: "Deploy autonomous AI agents that learn and adapt to transform your business operations."};
|
||||||
index: true,
|
|
||||||
follow: true
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "AI Agents Platform | Intelligent Automation for Enterprise", description: "Deploy autonomous AI agents to automate complex workflows, reduce costs, and accelerate business growth.", type: "website", siteName: "AIAgents", images: [{
|
|
||||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-sleek-dark-themed-ai-agent-dashboard-i-1772135146014-9f93f466.png", alt: "AI Agents Platform Dashboard"
|
|
||||||
}]
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "AI Agents Platform | Intelligent Automation", description: "Deploy autonomous AI agents to automate complex workflows and reduce operational costs.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-sleek-dark-themed-ai-agent-dashboard-i-1772135146014-9f93f466.png"]
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={`${inter.variable} font-sans`}>
|
||||||
<body
|
{children}
|
||||||
className={montserrat.variable}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1404,7 +1387,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
"use client"
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
import HeroBillboardDashboard from '@/components/sections/hero/HeroBillboardDashboard';
|
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||||
import FeatureBento from '@/components/sections/feature/FeatureBento';
|
import FeatureBento from '@/components/sections/feature/FeatureBento';
|
||||||
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
|
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
|
||||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||||
@@ -43,8 +43,8 @@ export default function AIAgentsLandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardDashboard
|
<HeroBillboardScroll
|
||||||
background={{ variant: "radial-gradient" }}
|
background={{ variant: "canvas-reveal" }}
|
||||||
tag="Intelligent Automation"
|
tag="Intelligent Automation"
|
||||||
tagIcon={Zap}
|
tagIcon={Zap}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
@@ -55,45 +55,8 @@ export default function AIAgentsLandingPage() {
|
|||||||
{ text: "View Demo", href: "#features" }
|
{ text: "View Demo", href: "#features" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
dashboard={{
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-sleek-dark-themed-ai-agent-dashboard-i-1772135146014-9f93f466.png"
|
||||||
title: "Agent Performance Hub", logoIcon: Brain,
|
imageAlt="AI Agent Dashboard Preview"
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-sleek-dark-themed-ai-agent-dashboard-i-1772135146014-9f93f466.png", buttons: [
|
|
||||||
{ text: "Launch Dashboard", href: "#" },
|
|
||||||
{ text: "Export Report", href: "#" }
|
|
||||||
],
|
|
||||||
sidebarItems: [
|
|
||||||
{ icon: Home, active: true },
|
|
||||||
{ icon: Bot, active: false },
|
|
||||||
{ icon: Settings, active: false }
|
|
||||||
],
|
|
||||||
stats: [
|
|
||||||
{
|
|
||||||
title: "Tasks Completed", values: [15240, 23850, 31450],
|
|
||||||
description: "Daily automation executions"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Success Rate", values: [94.2, 96.8, 98.5],
|
|
||||||
valueSuffix: "%", description: "Agent reliability metrics"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: "Time Saved", values: [1240, 3850, 6240],
|
|
||||||
valueSuffix: "h", description: "Weekly human hours freed"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
chartTitle: "Agent Activity Trend", chartData: [
|
|
||||||
{ value: 65 },
|
|
||||||
{ value: 78 },
|
|
||||||
{ value: 85 },
|
|
||||||
{ value: 92 },
|
|
||||||
{ value: 88 }
|
|
||||||
],
|
|
||||||
listTitle: "Recent Agent Actions", listItems: [
|
|
||||||
{ icon: CheckCircle, title: "Email Campaign Automated", status: "Completed" },
|
|
||||||
{ icon: Zap, title: "Data Processing Pipeline", status: "Running" },
|
|
||||||
{ icon: ArrowRightCircle, title: "Lead Qualification Task", status: "Completed" }
|
|
||||||
],
|
|
||||||
searchPlaceholder: "Search agents or tasks..."
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -366,4 +329,4 @@ export default function AIAgentsLandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -265,4 +265,4 @@ function ProductPageContent({ params }: ProductPageProps) {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -132,4 +132,4 @@ export default function ShopPage() {
|
|||||||
<ShopPageContent />
|
<ShopPageContent />
|
||||||
</Suspense>
|
</Suspense>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-montserrat), sans-serif;
|
font-family: var(--font-inter), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-montserrat), sans-serif;
|
font-family: var(--font-inter), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,23 +2,23 @@
|
|||||||
/* Base units */
|
/* Base units */
|
||||||
/* --vw is set by ThemeProvider */
|
/* --vw is set by ThemeProvider */
|
||||||
|
|
||||||
/* --background: #0a0a0a;;;
|
/* --background: #ffffff;;;;;;;;;;;;;;;
|
||||||
--card: #1a1a1a;;;
|
--card: #f9f9f9;;;;;;;;;;;;;;;
|
||||||
--foreground: #ffffffe6;;;
|
--foreground: #000612e6;;;;;;;;;;;;;;;
|
||||||
--primary-cta: #e6e6e6;;;
|
--primary-cta: #106EFB;;;;;;;;;;;;;;;
|
||||||
--secondary-cta: #1a1a1a;;;
|
--secondary-cta: #000000;;;;;;;;;;;;;;;
|
||||||
--accent: #737373;;;
|
--accent: #fbfbfb;;;;;;;;;;;;;;;
|
||||||
--background-accent: #737373;;; */
|
--background-accent: #106EFB;;;;;;;;;;;;;;; */
|
||||||
|
|
||||||
--background: #0a0a0a;;;
|
--background: #ffffff;;;;;;;;;;;;;;;
|
||||||
--card: #1a1a1a;;;
|
--card: #f9f9f9;;;;;;;;;;;;;;;
|
||||||
--foreground: #ffffffe6;;;
|
--foreground: #000612e6;;;;;;;;;;;;;;;
|
||||||
--primary-cta: #e6e6e6;;;
|
--primary-cta: #106EFB;;;;;;;;;;;;;;;
|
||||||
--primary-cta-text: #0a0a0a;;
|
--primary-cta-text: #0a0a0a;;
|
||||||
--secondary-cta: #1a1a1a;;;
|
--secondary-cta: #000000;;;;;;;;;;;;;;;
|
||||||
--secondary-cta-text: #ffffffe6;;
|
--secondary-cta-text: #ffffffe6;;
|
||||||
--accent: #737373;;;
|
--accent: #fbfbfb;;;;;;;;;;;;;;;
|
||||||
--background-accent: #737373;;;
|
--background-accent: #106EFB;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user