import type { Metadata } from "next"; import { Prata } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const prata = Prata({ variable: "--font-prata", subsets: ["latin"], weight: ["400"], }); export const metadata: Metadata = { title: "Hey Eddy | AI Voice Interviews for Smarter Hiring", description: "Automate candidate screening with AI-powered voice interviews. Eliminate bias, reduce hiring time by 73%, and find your best candidates faster.", keywords: "AI recruiting, voice interviews, hiring automation, bias-free recruitment, candidate screening", robots: { index: true, follow: true, }, openGraph: { title: "Hey Eddy | AI Voice Interviews for Smarter Hiring", description: "Automate candidate screening with AI-powered voice interviews. Eliminate bias, reduce hiring time by 73%, and find your best candidates faster.", type: "website", siteName: "Hey Eddy"}, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}