From fd1ecaa379adcbba98dff3cc343e1e4451ee7973 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 10:53:14 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 51 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 45 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 184a97f..31e643b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,58 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_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 openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "ContentAI - AI Content Generator for Social Media", description: "Generate Instagram captions, TikTok scripts, YouTube videos, and hashtags instantly. Automate your content creation across all platforms with AI.", keywords: "AI content generator, social media content, Instagram captions, TikTok scripts, YouTube videos, hashtag generator, content automation", metadataBase: new URL("https://contentai.example.com"), - alternates: { - canonical: "https://contentai.example.com"}, - openGraph: { - title: "ContentAI - AI Content Generator for Social Media", description: "Generate viral content instantly. Instagram posts, TikTok scripts, YouTube videos, captions, and hashtags—all powered by AI.", url: "https://contentai.example.com", siteName: "ContentAI", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ahm1GFHK1v87J2Lm4ZltmBhGcH/a-modern-instagram-content-creation-dash-1773053055199-b4878233.png", alt: "ContentAI Dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "ContentAI - AI Content Generator", description: "Create professional social media content in minutes. AI-powered captions, scripts, and hashtags for any niche.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ahm1GFHK1v87J2Lm4ZltmBhGcH/a-modern-instagram-content-creation-dash-1773053055199-b4878233.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "ContentAI - Generate Viral Content Automatically", description: "Transform any niche idea into professional Instagram posts, TikTok videos, YouTube scripts, and more—instantly powered by AI."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}