From 6d40a0c3e049724bbc6707ce661554d0ed91060e Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 09:03:49 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d7bc8d..bc0bbd3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,8 +1,14 @@ 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: "AI Chatbot Blog", description: "Discover cutting-edge insights on conversational AI"}; + title: "AI Chatbot Blog", description: "Discover cutting-edge insights on conversational AI" +}; export default function RootLayout({ children, @@ -11,7 +17,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}