diff --git a/frontend/app/layout.tsx b/frontend/app/layout.tsx index 6346668..e44441c 100644 --- a/frontend/app/layout.tsx +++ b/frontend/app/layout.tsx @@ -1,4 +1,10 @@ import type { Metadata } from "next"; +import { Inter } from "next/font/google"; + +const inter = Inter({ + subsets: ["latin"], + display: "swap", +}); export const metadata: Metadata = { title: "AutoDev — Self-Healing Codebase Agent", @@ -7,7 +13,7 @@ export const metadata: Metadata = { export default function RootLayout({ children }: { children: React.ReactNode }) { return ( - +