import type { Metadata } from "next"; import { Libre_Baskerville } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const libreBaskerville = Libre_Baskerville({ variable: "--font-libre-baskerville", subsets: ["latin"], weight: ["400", "700"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "7 Ready AI Agents – Save Hours Every Week | ₹97", description: "Get 7 production-ready AI agents to automate your workflow. From viral reels to resume generation, instant access after UPI payment. Join 1000+ users.", keywords: "AI agents, automation, productivity, resume generator, content creation, UPI payment", metadataBase: new URL("https://7readyaiagents.com"), alternates: { canonical: "https://7readyaiagents.com"}, openGraph: { title: "7 Ready AI Agents – Save Hours Every Week", description: "Transform your productivity with 7 production-ready AI agents. Only ₹97. Instant access.", url: "https://7readyaiagents.com", siteName: "7 Ready AI Agents", images: [ { url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6RsYSzG8zkhnZGD8pPkpUj1y/a-sleek-modern-dashboard-showcasing-ai-a-1772818434783-ad5230db.png", alt: "7 AI Agents Dashboard"}, ], type: "website"}, twitter: { card: "summary_large_image", title: "7 Ready AI Agents – Save Hours Every Week", description: "Get 7 AI agents for ₹97. Instant access after UPI payment.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Aa6RsYSzG8zkhnZGD8pPkpUj1y/a-sleek-modern-dashboard-showcasing-ai-a-1772818434783-ad5230db.png"], }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}