3 Commits

Author SHA1 Message Date
fb85216238 Update src/app/page.tsx 2026-03-08 11:55:52 +00:00
a23f3a46ef Update src/app/layout.tsx 2026-03-08 11:55:52 +00:00
04499bc599 Merge version_7 into main
Merge version_7 into main
2026-03-08 11:53:33 +00:00
2 changed files with 6 additions and 11 deletions

View File

@@ -1,14 +1,11 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google";
import "./styles/variables.css";
import "./globals.css"; import "./globals.css";
const dmSans = DM_Sans({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-dm-sans", subsets: ["latin"],
});
export const metadata: Metadata = { 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({ export default function RootLayout({
children, children,
@@ -17,9 +14,7 @@ export default function RootLayout({
}) { }) {
return ( return (
<html lang="en"> <html lang="en">
<body className={dmSans.variable}> <body className={inter.className}>{children}
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1389,4 +1384,4 @@ export default function RootLayout({
</body> </body>
</html> </html>
); );
} }

View File

@@ -184,4 +184,4 @@ export default function HomePage() {
/> />
</ThemeProvider> </ThemeProvider>
); );
} }