From 02cf4f84ca20359143a0c345a94caa199bed5892 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 06:07:27 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 71 ++++++---------------------------------------- 1 file changed, 9 insertions(+), 62 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e278236..fb1e6ee 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,74 +1,22 @@ 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: "Brainify - AI SaaS Platform for Creators", - description: "Create stunning AI-generated content with Brainify. 15+ AI tools including image generation, face swap, video creation, and more. 50% off first month. Free trial with 5 daily AI Sparks.", - keywords: "AI tools, image generator, face swap, video generation, SaaS platform, content creation, AI art", - metadataBase: new URL("https://brainify.ai"), - alternates: { - canonical: "https://brainify.ai", - }, - openGraph: { - title: "Brainify - AI Content Creation Platform", - description: "Transform your creativity with 15+ AI-powered tools. Generate images, videos, enhance photos, and create professional content effortlessly.", - url: "https://brainify.ai", - siteName: "Brainify", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVswAIYlsTNcIZ3oIHvVtQVpeu/a-modern-ai-image-generation-interface-s-1772690553345-c5e0890c.png", - alt: "Brainify AI Platform", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Brainify - AI Content Creation", - description: "Create AI-generated content with 15+ tools. Start free with 5 daily AI Sparks.", - images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AVswAIYlsTNcIZ3oIHvVtQVpeu/a-modern-ai-image-generation-interface-s-1772690553345-c5e0890c.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Brainify - AI Content Creation Platform", description: "Transform your creativity with AI-powered tools for content creation, image generation, video production, and more."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +