From 0bbd2e060fac2349fe488f994a7079d651bd3797 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 23:48:03 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1432 +------------------------------------------- 1 file changed, 7 insertions(+), 1425 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7304348..ac9d1e5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1434 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Roboto } 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 roboto = Roboto({ - variable: "--font-roboto", - subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +import "./styles/globals.css"; export const metadata: Metadata = { - title: "Syncora - AI Content Creator Platform | Scripts, Ideas & Thumbnails", - description: "Generate AI-powered scripts, trending video ideas, and customizable thumbnails for YouTube, TikTok, Instagram & Facebook. Free tier + flexible pricing. Join 5,000+ creators.", - keywords: "AI content creator, video script generator, TikTok content, YouTube shorts, Instagram reels, thumbnail generator, content creation tools", - openGraph: { - title: "Syncora - AI Content Creator Platform", - description: "Transform your content creation with AI. Generate scripts, ideas, and thumbnails for all platforms.", - url: "https://syncora.app", - siteName: "Syncora", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdN0gwMXJN4o9AEjWIWDR10e3G/modern-software-dashboard-for-content-cr-1772927099490-052886ae.png", - alt: "Syncora Platform Dashboard", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Syncora - AI Content Creator Platform", - description: "Generate AI scripts, trending ideas & thumbnails for YouTube, TikTok, Instagram & Facebook", - images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AdN0gwMXJN4o9AEjWIWDR10e3G/modern-software-dashboard-for-content-cr-1772927099490-052886ae.png"], - }, -}; + title: "Syncora - AI-Powered Content Creation Platform", description: "Transform your content creation with AI-powered scripts, trending video ideas, and customizable animations for YouTube, TikTok, Instagram, and Facebook."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -