import type { Metadata } from "next"; import { Plus_Jakarta_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const plusJakartaSans = Plus_Jakarta_Sans({ variable: "--font-plus-jakarta-sans", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "iPhone 15 - Buy Premium Smartphones Online", description: "Discover the latest iPhone models. Premium design, advanced cameras, and exceptional performance. Shop iPhone 15, Pro, and Pro Max with guaranteed quality.", keywords: "iPhone 15, smartphone, mobile phone, premium device, Apple", robots: { index: true, follow: true }, openGraph: { title: "iPhone 15 - Experience Premium Smartphones", description: "Shop the latest iPhone models with cutting-edge technology and design.", siteName: "iPhone Store", type: "website", images: [ { url: "https://img.b2bpic.net/free-photo/mockup-mobile-phone-screen_53876-63379.jpg", alt: "iPhone 15 Pro" } ] }, twitter: { card: "summary_large_image", title: "iPhone 15 - Premium Smartphones", description: "Discover the future of mobile technology.", images: ["https://img.b2bpic.net/free-photo/mockup-mobile-phone-screen_53876-63379.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}