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 { 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 (
<html lang="en">
<body className={dmSans.variable}>
{children}
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1389,4 +1384,4 @@ export default function RootLayout({
</body>
</html>
);
}
}

View File

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