diff --git a/src/app/layout.tsx b/src/app/layout.tsx index af7a6d9..bb663cc 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,6 +1,11 @@ import type { Metadata } from "next"; +import { Inter } from "next/font/google"; import "./globals.css"; +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); + export const metadata: Metadata = { title: "Portfolio", description: "Creative Professional & Designer" }; @@ -12,7 +17,7 @@ export default function RootLayout({ }) { return ( - + {children}