From 0efbf816fcf18ec795ac89c5c142be4f9a341797 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 06:10:56 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 20 ++++---------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 85ce209..12ac2a4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,14 +1,8 @@ import type { Metadata } from "next"; -import { Inter } from "next/font/google"; -import "./styles/variables.css"; -import "./styles/base.css"; -import "./globals.css"; - -const inter = Inter({ subsets: ["latin"] }); +import "./styles/globals.css"; export const metadata: Metadata = { - title: "TG Entertainment", description: "Human Creativity × AI Efficiency - Premium creative agency" -}; + title: "TG Entertainment | Creative Agency", description: "A creative agency redefining what's possible when human brilliance meets intelligent automation."}; export default function RootLayout({ children, @@ -16,14 +10,8 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - - - {children} -