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}