import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import { Poppins } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const halant = Halant({ variable: "--font-halant", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); const poppins = Poppins({ variable: "--font-poppins", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { title: "Sreesankar S - AI & Robotics Engineer Portfolio", description: "Professional portfolio of Sreesankar S, AI & Robotics Engineer. Specializing in embedded systems, machine learning, and IoT solutions. View projects and expertise.", keywords: "AI engineer, robotics developer, embedded systems, ESP32, Arduino, Python, C++, machine learning, NLP, IoT, automation", openGraph: { title: "Sreesankar S - AI & Robotics Engineer", description: "Innovative AI and Robotics Engineer specializing in embedded systems and IoT solutions.", siteName: "Sreesankar S", type: "website", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhRW1e0S1024WSsqxfK0VyMLSh/an-immersive-3d-animated-background-feat-1773123010141-d136b02c.png", alt: "An immersive 3D animated background featuring floating neural network nodes, glowing particle grid, "}, ], }, twitter: { card: "summary_large_image", title: "Sreesankar S - AI & Robotics Engineer", description: "AI, Robotics, and Embedded Systems Expert | Portfolio & Projects", images: [ "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AhRW1e0S1024WSsqxfK0VyMLSh/an-immersive-3d-animated-background-feat-1773123010141-d136b02c.png"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}