From a23f3a46efc5491cb82a9a4e77afb5f1d7f58bc2 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 11:55:52 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c2cfc88..cc7754e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,14 +1,11 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; -import "./styles/variables.css"; +import { Inter } from "next/font/google"; import "./globals.css"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "PetCare AI", description: "AI-powered pet health guidance and emergency first aid assistant"}; + title: "PetCare AI", description: "AI-powered pet health guidance and emergency assistance"}; export default function RootLayout({ children, @@ -17,9 +14,7 @@ export default function RootLayout({ }) { return ( - - {children} - + {children}