From 27d446923da96a8d541f7b13cd887c729b2085ff Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 22:52:16 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 49 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 43 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f229caa..dbffddf 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,56 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Public_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 publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Mindex AI | Intelligent Marketing Automation", description: "Transform your marketing with AI-powered content generation, real-time analytics, and intelligent personalization. Start your free 14-day trial today.", keywords: "AI marketing, marketing automation, content generation, AI copywriting, marketing analytics, personalization engine", metadataBase: new URL("https://mindex.ai"), - openGraph: { - title: "Mindex AI | Intelligent Marketing Automation", description: "Marketing automation powered by advanced AI. Generate campaigns, optimize performance, engage customers with precision.", siteName: "Mindex AI", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdWCGTUmxjPQZM4XzNfED6RccT/a-sleek-ai-dashboard-interface-with-clea-1772922867643-9c49e8f2.png", alt: "Mindex AI marketing dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Mindex AI | Intelligent Marketing Automation", description: "AI-powered marketing automation for modern teams. Generate content, optimize campaigns, and personalize at scale.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdWCGTUmxjPQZM4XzNfED6RccT/a-sleek-ai-dashboard-interface-with-clea-1772922867643-9c49e8f2.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Mindex AI", description: "Intelligent marketing automation powered by advanced AI"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}