import type { Metadata } from "next"; import { Mulish } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "iPhone 15 | Premium Smartphones | Shop Now", description: "Discover the latest iPhone 15 with advanced camera, A17 Pro chip, and all-day battery. Experience premium smartphone technology.", keywords: "iPhone, smartphone, Apple, iPhone 15, Pro, Max, camera, technology", metadataBase: new URL("https://img.b2bpic.net/free-psd/new-smartphone-a18-bionic-social-media-banner-design-template_47987-33085.jpg"), alternates: { canonical: "https://img.b2bpic.net/free-psd/new-smartphone-a18-bionic-social-media-banner-design-template_47987-33085.jpg" }, openGraph: { title: "iPhone 15 | Premium Smartphones", description: "Experience the future of mobile technology with the new iPhone 15.", siteName: "iPhone", type: "website", images: [ { url: "https://img.b2bpic.net/free-psd/new-smartphone-a18-bionic-social-media-banner-design-template_47987-33085.jpg", alt: "iPhone 15 Premium Smartphone" } ] }, twitter: { card: "summary_large_image", title: "iPhone 15 | Premium Smartphones", description: "Discover the latest iPhone with revolutionary features.", images: ["https://img.b2bpic.net/free-psd/new-smartphone-a18-bionic-social-media-banner-design-template_47987-33085.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}