3 Commits

Author SHA1 Message Date
62d8c661b7 Update src/app/page.tsx 2026-03-09 02:28:27 +00:00
9e7b262e08 Update src/app/layout.tsx 2026-03-09 02:28:27 +00:00
6454384dc7 Merge version_1 into main
Merge version_1 into main
2026-03-09 02:26:38 +00:00
2 changed files with 10 additions and 51 deletions

View File

@@ -1,57 +1,17 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google"; import "@/styles/globals.css";
import { Inter } from "next/font/google";
import { Open_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const openSans = Open_Sans({
variable: "--font-open-sans", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "AIFlow - Enterprise AI Platform for Intelligent Automation", description: "Transform your business with AIFlow's cutting-edge AI platform. Automate workflows, gain real-time insights, and achieve 340% ROI. Trusted by 5,000+ enterprises.", keywords: "AI platform, machine learning, business automation, enterprise AI, data analytics, predictive intelligence", metadataBase: new URL("https://aiflow.io"), title: "AIFlow - Intelligent AI Platform for Modern Enterprise", description: "Harness the power of artificial intelligence to automate workflows, gain real-time insights, and transform your business operations with cutting-edge technology."};
alternates: {
canonical: "https://aiflow.io"
},
openGraph: {
title: "AIFlow - Enterprise AI Platform", description: "Intelligent automation platform trusted by leading enterprises. Automate workflows, predict outcomes, and scale AI initiatives.", url: "https://aiflow.io", siteName: "AIFlow", type: "website", images: [{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AgnGDtn0TGCbSSUIan221VtzJW/a-futuristic-ai-platform-dashboard-with--1773023067498-ddc7db90.png", alt: "AIFlow Dashboard"
}]
},
twitter: {
card: "summary_large_image", title: "AIFlow - Enterprise AI Platform", description: "Transform your business with cutting-edge AI. Automate, predict, and scale intelligently.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AgnGDtn0TGCbSSUIan221VtzJW/a-futuristic-ai-platform-dashboard-with--1773023067498-ddc7db90.png"]
},
robots: {
index: true,
follow: true
}
};
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>{children}
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1419,7 +1379,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -144,7 +144,7 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
features={[ features={[
{ {
title: "Intelligent Automation", description: "Automate complex workflows and reduce manual processes by up to 80%", bentoComponent: "orbiting-icons", centerIcon: Zap, title: "Reduce Manual Work by 80%", description: "Automate complex workflows and reduce manual processes by up to 80%", bentoComponent: "orbiting-icons", centerIcon: Zap,
items: [ items: [
{ icon: Cpu, ring: 1 }, { icon: Cpu, ring: 1 },
{ icon: Database, ring: 1 }, { icon: Database, ring: 1 },
@@ -153,17 +153,17 @@ export default function LandingPage() {
] ]
}, },
{ {
title: "Advanced Analytics", description: "Real-time data visualization and predictive insights", bentoComponent: "line-chart" title: "Gain Real-Time Insights Instantly", description: "Real-time data visualization and predictive insights", bentoComponent: "line-chart"
}, },
{ {
title: "API Integrations", description: "Seamlessly connect with 500+ enterprise applications", bentoComponent: "icon-info-cards", items: [ title: "Connect to 500+ Enterprise Apps", description: "Seamlessly connect with 500+ enterprise applications", bentoComponent: "icon-info-cards", items: [
{ icon: Plug, label: "API Endpoints", value: "500+" }, { icon: Plug, label: "API Endpoints", value: "500+" },
{ icon: Zap, label: "Uptime SLA", value: "99.99%" }, { icon: Zap, label: "Uptime SLA", value: "99.99%" },
{ icon: Shield, label: "Enterprise Grade", value: "ISO 27001" } { icon: Shield, label: "Enterprise Grade", value: "ISO 27001" }
] ]
}, },
{ {
title: "Real-Time Monitoring", description: "Track system performance and AI model accuracy metrics", bentoComponent: "animated-bar-chart" title: "Monitor System Health 24/7", description: "Track system performance and AI model accuracy metrics", bentoComponent: "animated-bar-chart"
} }
]} ]}
carouselMode="buttons" carouselMode="buttons"