diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 8284fef..a06c216 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,57 +1,20 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
-import { Montserrat } 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 montserrat = Montserrat({
- variable: "--font-montserrat", subsets: ["latin"],
-});
+const inter = Inter({ variable: "--font-inter", subsets: ["latin"] });
export const metadata: Metadata = {
- title: "AI WorkFlow - Enterprise Automation Platform", description: "Automate workflows and unlock AI insights for enterprise operations. See measurable ROI in weeks. Start your free trial today.", keywords: "AI automation, enterprise software, workflow optimization, business automation, artificial intelligence", metadataBase: new URL("https://aiworkflow.example.com"),
- alternates: {
- canonical: "https://aiworkflow.example.com"},
- openGraph: {
- title: "AI WorkFlow - Enterprise Automation Platform", description: "Transform your operations with AI automation. Reduce costs by 68% and achieve ROI in just 4 weeks.", url: "https://aiworkflow.example.com", siteName: "AI WorkFlow", type: "website", images: [
- {
- url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcCjReQmbKun1Ld66jrs2rWw8W/a-modern-sophisticated-ai-dashboard-inte-1772882685187-c831ae10.png", alt: "AI WorkFlow Dashboard"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "AI WorkFlow - Enterprise AI Automation", description: "Automate complex workflows and see measurable results in weeks.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AcCjReQmbKun1Ld66jrs2rWw8W/a-modern-sophisticated-ai-dashboard-inte-1772882685187-c831ae10.png"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "AI WorkFlow - Enterprise AI Automation", description: "Automate complex workflows and unlock insights with enterprise-grade AI automation. See measurable results in weeks."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-