import type { Metadata } from "next"; import { Lato } from "next/font/google"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const lato = Lato({ variable: "--font-lato", subsets: ["latin"], weight: ["100", "300", "400", "700", "900"], }); const halant = Halant({ variable: "--font-halant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "Astronaut Explorer - Space Exploration & Education", description: "Discover inspiring stories of astronauts, advanced rocket technology, and fascinating space facts. Explore the cosmos with Astronaut Explorer.", keywords: "astronauts, space exploration, rockets, planets, space facts, NASA, cosmos", metadataBase: new URL("https://astronautexplorer.com"), alternates: { canonical: "https://astronautexplorer.com" }, openGraph: { title: "Astronaut Explorer - Journey Beyond the Stars", description: "Explore space pioneers, cutting-edge rockets, and universe facts on Astronaut Explorer.", url: "https://astronautexplorer.com", siteName: "Astronaut Explorer", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATdDsn0TDcZIixyitoL2c33DHC/a-stunning-space-scene-featuring-an-astr-1772620469313-420309bd.png", alt: "Astronaut Explorer - Space exploration website" } ], type: "website" }, twitter: { card: "summary_large_image", title: "Astronaut Explorer", description: "Journey beyond the stars. Explore space with inspiring astronaut stories and space facts.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATdDsn0TDcZIixyitoL2c33DHC/a-stunning-space-scene-featuring-an-astr-1772620469313-420309bd.png"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}