Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-09 02:28:32 +00:00
2 changed files with 10 additions and 51 deletions

View File

@@ -1,57 +1,17 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
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"],
});
import "@/styles/globals.css";
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"),
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
}
};
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."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${openSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1379,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -144,7 +144,7 @@ export default function LandingPage() {
useInvertedBackground={false}
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: [
{ icon: Cpu, 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: Zap, label: "Uptime SLA", value: "99.99%" },
{ 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"