From ae5b9bc4dc4fbe6919bf02dd482ae15bb5c82370 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 17:24:08 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 48 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8ec545a..2b096ee 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -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 ( - - - - - {children} - + + {children}