Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-04 14:35:47 +00:00
2 changed files with 8 additions and 47 deletions

View File

@@ -1,58 +1,20 @@
import type { Metadata } from "next";
import { Raleway } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const raleway = Raleway({
variable: "--font-raleway", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "AIFlow - Enterprise AI Platform for Production ML", description: "Deploy, manage, and scale machine learning models with enterprise-grade AI infrastructure. Trusted by Fortune 500 companies. 99.99% uptime guarantee.", keywords: "AI platform, machine learning deployment, MLOps, AI infrastructure, model management, enterprise AI, ML platform", metadataBase: new URL("https://aiflow.ai"),
alternates: {
canonical: "https://aiflow.ai"},
openGraph: {
title: "AIFlow - Enterprise AI Platform", description: "Enterprise-grade AI platform for deploying and scaling machine learning models.", url: "https://aiflow.ai", siteName: "AIFlow", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AU5lzcC4gSJQBun5SvfmoQd0Rv/professional-user-avatar-photo-for-a-tec-1772634559481-4e820d77.png", alt: "AIFlow Platform Dashboard"},
],
type: "website"},
twitter: {
card: "summary_large_image", title: "AIFlow - Enterprise AI Platform", description: "Enterprise-grade AI platform for deploying and scaling ML models.", images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AU5lzcC4gSJQBun5SvfmoQd0Rv/professional-user-avatar-photo-for-a-tec-1772634559481-4e820d77.png"],
},
robots: {
index: true,
follow: true,
},
};
title: "AIFlow - Enterprise AI Platform", description: "Transform your business with enterprise-grade AI automation, predictive analytics, and intelligent workflows."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${raleway.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -281,7 +281,7 @@ export default function LandingPage() {
{ text: "Contact Sales", href: "#" },
],
features: [
"Up to 5 models", "1M API calls/month", "Community support", "Basic monitoring", "Single deployment region"],
"Up to 5 models", "1M API calls/month", "Community support", "Basic monitoring", "Single deployment region", "Pay-as-you-go compute pricing"],
},
{
id: "professional", badge: "Most Popular", badgeIcon: Sparkles,
@@ -395,4 +395,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}