import type { Metadata } from "next"; import { Inter_Tight } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const interTight = Inter_Tight({ variable: "--font-inter-tight", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { title: "EMODJISITE - Learn Emoji Meanings & Usage for Kids", description: "Explore 500+ emojis with meanings, origins, and usage tips. Perfect learning resource for kids and families.", keywords: "emoji,learning,kids,emoji meanings,emoji guide,education", metadataBase: new URL("https://emodjisite.com"), alternates: { canonical: "https://emodjisite.com" }, openGraph: { title: "EMODJISITE - Learn Emoji Meanings & Usage for Kids", description: "Explore 500+ emojis with meanings, origins, and usage tips. Perfect learning resource for kids and families.", url: "https://emodjisite.com", siteName: "EMODJISITE", type: "website", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766500999465-vys8xuv7.jpg", alt: "Emoji learning platform" } ] }, twitter: { card: "summary_large_image", title: "EMODJISITE - Learn Emoji Meanings & Usage for Kids", description: "Explore 500+ emojis with meanings, origins, and usage tips.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766500999465-vys8xuv7.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}