38 Commits

Author SHA1 Message Date
ddb16dfe3e Update src/app/styles/base.css 2026-02-27 05:12:17 +00:00
84d9d854c5 Update src/app/shop/page.tsx 2026-02-27 05:12:16 +00:00
a2f7dec124 Update src/app/shop/[id]/page.tsx 2026-02-27 05:12:16 +00:00
c9316200bc Update src/app/page.tsx 2026-02-27 05:12:15 +00:00
829e28d3db Update src/app/layout.tsx 2026-02-27 05:12:14 +00:00
5d7d9e6d70 Update src/app/blog/page.tsx 2026-02-27 05:12:13 +00:00
b9cbc4bc31 Merge version_3 into main
Merge version_3 into main
2026-02-27 05:09:34 +00:00
48fa671989 Update theme fonts 2026-02-27 05:09:30 +00:00
016c5fe59e Update theme fonts 2026-02-27 05:09:29 +00:00
7a9471bbcc Merge version_3 into main
Merge version_3 into main
2026-02-27 05:09:05 +00:00
c4cb9e3438 Update theme colors 2026-02-27 05:08:58 +00:00
c1ef6296f6 Merge version_3 into main
Merge version_3 into main
2026-02-27 05:08:40 +00:00
76587b91c3 Update theme colors 2026-02-27 05:08:34 +00:00
e36bddab82 Merge version_3 into main
Merge version_3 into main
2026-02-27 05:08:20 +00:00
993cf2a86a Update theme colors 2026-02-27 05:08:13 +00:00
f71c710c9b Merge version_3 into main
Merge version_3 into main
2026-02-27 05:07:47 +00:00
76f2e03a7d Update theme colors 2026-02-27 05:07:41 +00:00
538169697d Merge version_3 into main
Merge version_3 into main
2026-02-27 05:07:21 +00:00
ad9e417166 Update theme colors 2026-02-27 05:07:15 +00:00
1db96cfe38 Merge version_3 into main
Merge version_3 into main
2026-02-27 05:06:46 +00:00
6dbc6e1a1d Update theme colors 2026-02-27 05:06:39 +00:00
10b77ad533 Merge version_3 into main
Merge version_3 into main
2026-02-27 05:06:24 +00:00
cb8a422a64 Update theme colors 2026-02-27 05:06:18 +00:00
fed5f4fed6 Merge version_3 into main
Merge version_3 into main
2026-02-27 05:06:10 +00:00
8aff14a23d Update theme colors 2026-02-27 05:06:04 +00:00
0543a6a010 Merge version_3 into main
Merge version_3 into main
2026-02-27 05:05:46 +00:00
6cabc33779 Update theme colors 2026-02-27 05:05:39 +00:00
d8ee3f3e10 Merge version_3 into main
Merge version_3 into main
2026-02-27 05:05:29 +00:00
83e678982c Update theme colors 2026-02-27 05:05:22 +00:00
4fc90a33a9 Merge version_3 into main
Merge version_3 into main
2026-02-27 05:05:06 +00:00
48815eef22 Update theme colors 2026-02-27 05:05:00 +00:00
f041297016 Merge version_3 into main
Merge version_3 into main
2026-02-27 05:04:28 +00:00
39df01732e Update theme colors 2026-02-27 05:04:21 +00:00
28c59de6f9 Merge version_3 into main
Merge version_3 into main
2026-02-27 04:45:54 +00:00
7eae7ce77a Update src/app/page.tsx 2026-02-27 04:45:49 +00:00
7d7769d7dd Merge version_2 into main
Merge version_2 into main
2026-02-26 19:50:55 +00:00
30274fde5c Update src/app/styles/variables.css 2026-02-26 19:50:50 +00:00
f9db7e5c1d Merge version_1 into main
Merge version_1 into main
2026-02-26 19:49:12 +00:00
7 changed files with 38 additions and 93 deletions

View File

@@ -102,4 +102,4 @@ export default function BlogPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -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>
);
}
}

View File

@@ -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>
);
}
}

View File

@@ -265,4 +265,4 @@ function ProductPageContent({ params }: ProductPageProps) {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -132,4 +132,4 @@ export default function ShopPage() {
<ShopPageContent />
</Suspense>
);
}
}

View File

@@ -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;
}

View File

@@ -2,23 +2,23 @@
/* Base units */
/* --vw is set by ThemeProvider */
/* --background: #0a0a0a;;;
--card: #1a1a1a;;;
--foreground: #ffffffe6;;;
--primary-cta: #e6e6e6;;;
--secondary-cta: #1a1a1a;;;
--accent: #737373;;;
--background-accent: #737373;;; */
/* --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: #e6e6e6;;;
--background: #ffffff;;;;;;;;;;;;;;;
--card: #f9f9f9;;;;;;;;;;;;;;;
--foreground: #000612e6;;;;;;;;;;;;;;;
--primary-cta: #106EFB;;;;;;;;;;;;;;;
--primary-cta-text: #0a0a0a;;
--secondary-cta: #1a1a1a;;;
--secondary-cta: #000000;;;;;;;;;;;;;;;
--secondary-cta-text: #ffffffe6;;
--accent: #737373;;;
--background-accent: #737373;;;
--accent: #fbfbfb;;;;;;;;;;;;;;;
--background-accent: #106EFB;;;;;;;;;;;;;;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);