diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6737080..ec71fbf 100755 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,6 +1,20 @@ import type { Metadata } from "next"; +import { Inter, JetBrains_Mono } from "next/font/google"; import "./globals.css"; +const inter = Inter({ + subsets: ["latin"], + variable: "--font-inter", + display: "swap", +}); + +const jetbrainsMono = JetBrains_Mono({ + subsets: ["latin"], + variable: "--font-jetbrains-mono", + display: "swap", + weight: ["400", "500"], +}); + export const metadata: Metadata = { title: "Zachary Gaetano | Broadcast Systems Integration & Production Facility Design", description: @@ -138,18 +152,8 @@ export default function RootLayout({ children: React.ReactNode; }>) { return ( - + - - -