From a6c1237897fb0f530f9b5ab7f25885ced5b3affd Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 21:46:30 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 26 +++++--------------------- 1 file changed, 5 insertions(+), 21 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5813403..9563af2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,14 +1,11 @@ import type { Metadata } from "next"; -import { Lexend } from "next/font/google"; +import { Inter } from "next/font/google"; import "./globals.css"; -const lexend = Lexend({ - variable: "--font-lexend", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Blackroom Collective - Premium Creative Solutions", description: "High-end video production, professional photography, custom web design, and AI-powered automation solutions for luxury brands and premium events."}; + title: "Blackroom Collective | Premium Creative Solutions", description: "High-end video production, photography, web design, and AI-powered automation for premium brands and events."}; export default function RootLayout({ children, @@ -16,21 +13,8 @@ export default function RootLayout({ children: React.ReactNode; }) { return ( - - - {children} -