From 7e36d1f1d0455361d3e98723834b6b851b841110 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 21:09:39 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6951b19..bc925d0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,6 +1,9 @@ import type { Metadata } from "next"; +import { Inter } from "next/font/google"; import "./globals.css"; +const inter = Inter({ subsets: ["latin"] }); + export const metadata: Metadata = { title: "SB Studio - Professional Recording Studio", description: "Book premium audio recording sessions with state-of-the-art equipment and experienced sound engineers."}; @@ -11,7 +14,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}