import type { Metadata } from "next"; import { Work_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const workSans = Work_Sans({ variable: "--font-work-sans", subsets: ["latin"], }); export const metadata: Metadata = { title: "Turtle Science Project - Education & Conservation", description: "Explore the fascinating world of turtles. Learn about their biology, diverse species, habitats, and critical conservation efforts.", keywords: "turtles, science, education, conservation, reptiles, wildlife, marine biology, habitat", metadataBase: new URL("https://turtle-science-project.com"), alternates: { canonical: "https://turtle-science-project.com" }, robots: { index: true, follow: true }, openGraph: { title: "Turtle Science Project - Understanding & Protecting Turtles", description: "Discover the remarkable world of turtles: their evolution, species diversity, habitats, and how we can protect them.", type: "website", siteName: "Turtle Science Project", images: [ { url: "https://img.b2bpic.net/free-photo/crab-walking-water-sand_209690-267.jpg", alt: "Sea turtle swimming in ocean" } ] }, twitter: { card: "summary_large_image", title: "Turtle Science Project - Education & Conservation", description: "Learn about turtles, their habitats, and conservation efforts to protect these ancient reptiles.", images: ["https://img.b2bpic.net/free-photo/crab-walking-water-sand_209690-267.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}