Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fb85216238 | |||
| a23f3a46ef | |||
| 04499bc599 |
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -184,4 +184,4 @@ export default function HomePage() {
|
||||
/>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user