From af6690939502d2655e504b24121e849ac7f3509a Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 00:12:08 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ac9d1e5..f886652 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,8 +1,11 @@ import type { Metadata } from "next"; -import "./styles/globals.css"; +import { Inter } from "next/font/google"; +import "./globals.css"; + +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - 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."}; + title: "Syncora - AI-Powered Content Creation", description: "Generate AI-powered scripts, trending video ideas, and customizable animations for YouTube, TikTok, Instagram, and Facebook."}; export default function RootLayout({ children, @@ -11,7 +14,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}