Merge version_2 into main #6
@@ -1,55 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Mulish } 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 mulish = Mulish({
|
||||
variable: "--font-mulish", 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 - Intelligent Automation Platform", description: "Transform your operations with AIFlow's AI-powered automation. Real-time analytics, smart workflows, and enterprise-grade security.", keywords: "AI automation, workflow automation, intelligent automation, business automation, AI platform", openGraph: {
|
||||
title: "AIFlow - Intelligent Automation Platform", description: "Transform your operations with AIFlow's AI-powered automation platform", siteName: "AIFlow", type: "website", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARUTfDf61ekIcDAd2e7CmaPRNW/a-sleek-modern-ai-dashboard-interface-di-1772554985092-29f1b57f.png", alt: "AIFlow Dashboard"
|
||||
}
|
||||
]
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "AIFlow - Intelligent Automation Platform", description: "AI-powered automation for enterprises. Real-time analytics, smart workflows, and 500+ integrations.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARUTfDf61ekIcDAd2e7CmaPRNW/a-sleek-modern-ai-dashboard-interface-di-1772554985092-29f1b57f.png"]
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true
|
||||
}
|
||||
};
|
||||
title: "AIFlow - Intelligent Automation Platform", description: "Harness the power of AI-driven insights and real-time analytics. Monitor, analyze, and optimize your entire operation from a single intelligent dashboard."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${mulish.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1417,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -271,13 +271,13 @@ export default function LandingPage() {
|
||||
]
|
||||
},
|
||||
{
|
||||
id: "pro", badge: "Most Popular", badgeIcon: Sparkles,
|
||||
id: "pro", badge: "Most teams choose Pro", badgeIcon: Sparkles,
|
||||
price: "$999", name: "Professional", buttons: [
|
||||
{ text: "Get Started", href: "https://app.aiflow.com" },
|
||||
{ text: "Contact Sales", href: "#" }
|
||||
],
|
||||
features: [
|
||||
"Unlimited automations", "Advanced analytics", "500+ integrations", "Priority support", "Up to 10 team members", "Custom workflows"
|
||||
"Unlimited automations", "Advanced analytics", "500+ integrations", "Priority support", "Up to 10 team members", "Custom workflows", "10x ROI on average"
|
||||
]
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user