Compare commits
36 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 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 |
@@ -102,4 +102,4 @@ export default function BlogPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,42 +1,25 @@
|
||||
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 { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const montserrat = Montserrat({
|
||||
variable: "--font-montserrat", subsets: ["latin"],
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
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: {
|
||||
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"]
|
||||
}
|
||||
};
|
||||
title: "AIAgents - Intelligent Automation Platform", description: "Deploy autonomous AI agents that learn and adapt to transform your business operations."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={montserrat.variable}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={`${inter.variable} font-sans`}>
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1404,7 +1387,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
"use client"
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
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 FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
@@ -43,8 +43,8 @@ export default function AIAgentsLandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboardDashboard
|
||||
background={{ variant: "radial-gradient" }}
|
||||
<HeroBillboardScroll
|
||||
background={{ variant: "canvas-reveal" }}
|
||||
tag="Intelligent Automation"
|
||||
tagIcon={Zap}
|
||||
tagAnimation="slide-up"
|
||||
@@ -55,45 +55,8 @@ export default function AIAgentsLandingPage() {
|
||||
{ text: "View Demo", href: "#features" }
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
dashboard={{
|
||||
title: "Agent Performance Hub", logoIcon: Brain,
|
||||
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..."
|
||||
}}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_32SzEkxKoNyIbQ4hnQYui6BHsfB/a-sleek-dark-themed-ai-agent-dashboard-i-1772135146014-9f93f466.png"
|
||||
imageAlt="AI Agent Dashboard Preview"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -366,4 +329,4 @@ export default function AIAgentsLandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -265,4 +265,4 @@ function ProductPageContent({ params }: ProductPageProps) {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -132,4 +132,4 @@ export default function ShopPage() {
|
||||
<ShopPageContent />
|
||||
</Suspense>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,7 +11,7 @@ html {
|
||||
body {
|
||||
background-color: var(--background);
|
||||
color: var(--foreground);
|
||||
font-family: var(--font-montserrat), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -24,5 +24,5 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: var(--font-montserrat), sans-serif;
|
||||
font-family: var(--font-inter), sans-serif;
|
||||
}
|
||||
|
||||
@@ -2,23 +2,23 @@
|
||||
/* Base units */
|
||||
/* --vw is set by ThemeProvider */
|
||||
|
||||
/* --background: #0a0a0a;;;
|
||||
--card: #1a1a1a;;;
|
||||
--foreground: #ffffffe6;;;
|
||||
--primary-cta: #0798ff;;;
|
||||
--secondary-cta: #1a1a1a;;;
|
||||
--accent: #0798ff;;;
|
||||
--background-accent: #93c7ff;;; */
|
||||
/* --background: #ffffff;;;;;;;;;;;;;;;
|
||||
--card: #f9f9f9;;;;;;;;;;;;;;;
|
||||
--foreground: #000612e6;;;;;;;;;;;;;;;
|
||||
--primary-cta: #106EFB;;;;;;;;;;;;;;;
|
||||
--secondary-cta: #000000;;;;;;;;;;;;;;;
|
||||
--accent: #fbfbfb;;;;;;;;;;;;;;;
|
||||
--background-accent: #106EFB;;;;;;;;;;;;;;; */
|
||||
|
||||
--background: #0a0a0a;;;
|
||||
--card: #1a1a1a;;;
|
||||
--foreground: #ffffffe6;;;
|
||||
--primary-cta: #0798ff;;;
|
||||
--background: #ffffff;;;;;;;;;;;;;;;
|
||||
--card: #f9f9f9;;;;;;;;;;;;;;;
|
||||
--foreground: #000612e6;;;;;;;;;;;;;;;
|
||||
--primary-cta: #106EFB;;;;;;;;;;;;;;;
|
||||
--primary-cta-text: #0a0a0a;;
|
||||
--secondary-cta: #1a1a1a;;;
|
||||
--secondary-cta: #000000;;;;;;;;;;;;;;;
|
||||
--secondary-cta-text: #ffffffe6;;
|
||||
--accent: #0798ff;;;
|
||||
--background-accent: #93c7ff;;;
|
||||
--accent: #fbfbfb;;;;;;;;;;;;;;;
|
||||
--background-accent: #106EFB;;;;;;;;;;;;;;;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user