diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6b82c81..2499a86 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,7 +1,11 @@ import type { Metadata } from "next"; +import { Inter } from "next/font/google"; +import "./globals.css"; + +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "ARSON BLACK - Cinematic Hip-Hop Artist", description: "ARSON BLACK: Zimbabwean-born artist crafting dark, introspective hip-hop and melodic Afrobeats from a personal creative studio."}; + title: "ARSON BLACK - Cinematic Hip-Hop & Afrobeats", description: "Enter the cinematic universe. A Zimbabwean-born artist crafting dark, introspective hip-hop and melodic Afrobeats from a personal creative studio."}; export default function RootLayout({ children, @@ -10,7 +14,7 @@ export default function RootLayout({ }) { return ( -
{children} + {children}