Update src/app/layout.tsx

This commit is contained in:
2026-03-04 13:41:03 +00:00
parent d08568ee16
commit 62b51f03c2

View File

@@ -1,46 +1,34 @@
import type { Metadata } from "next";
import { DM_Sans } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const dmSans = DM_Sans({
variable: "--font-dm-sans", subsets: ["latin"],
});
import "./styles/variables.css";
import "./styles/base.css";
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Pet Adoption & Shelter | Paws & Care", description: "Find your perfect pet companion at Paws & Care. Adopt rescue dogs, cats, and small animals. Learn about our adoption process, volunteer, and support our mission to save lives.", keywords: "pet adoption, animal shelter, rescue dogs, rescue cats, pet rescue, adopt a pet, animal welfare", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Pet Adoption & Shelter | Paws & Care", description: "Find your perfect pet companion. Browse adoptable pets and join our mission to save lives.", type: "website", siteName: "Paws & Care", images: [
{
url: "http://img.b2bpic.net/free-photo/woman-interacting-with-rescue-dogs-shelter_23-2148682952.jpg", alt: "Paws & Care Pet Shelter"},
],
},
twitter: {
card: "summary_large_image", title: "Pet Adoption & Shelter | Paws & Care", description: "Find your perfect pet companion at Paws & Care Pet Shelter", images: ["http://img.b2bpic.net/free-photo/woman-interacting-with-rescue-dogs-shelter_23-2148682952.jpg"],
},
};
title: "Paws & Care", description: "Pet shelter and adoption services"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<html lang="en">
<head>
<script
async
src="https://cdn.jsdelivr.net/npm/gsap@3.12.2/dist/gsap.min.js"
></script>
<script
async
src="https://cdn.jsdelivr.net/npm/gsap@3.12.2/dist/ScrollTrigger.min.js"
></script>
</head>
<body className={inter.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1408,7 +1396,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}