From c8a45c6ac3d111f31bd7805ebe42cce5a920d0c1 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 04:56:50 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 41 ++++++----------------------------------- 1 file changed, 6 insertions(+), 35 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bb8e727..3b9e3f9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,48 +1,20 @@ import type { Metadata } from "next"; -import { DM_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 dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "iPhone Store - Premium Smartphones & Accessories", description: "Shop authentic iPhones with best prices, 24/7 support, and flexible payment options. 100% genuine products with manufacturer warranty.", keywords: "iPhone, Apple smartphone, buy iPhone, iPhone store, mobile phones, latest iPhone models", robots: { - index: true, - follow: true, - }, - openGraph: { - title: "iPhone Store - Premium Smartphones", description: "Discover the latest iPhone models at competitive prices with expert support", url: "https://iphonestore.com", siteName: "iPhone Store", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-psd/new-smartphone-a18-bionic-social-media-banner-design-template_47987-33085.jpg", alt: "Latest iPhone Collection"}, - ], - }, - twitter: { - card: "summary_large_image", title: "iPhone Store - Shop Premium iPhones", description: "Get the latest iPhones with best prices and expert support", images: ["http://img.b2bpic.net/free-psd/new-smartphone-a18-bionic-social-media-banner-design-template_47987-33085.jpg"], - }, -}; + title: "iPhone Store - Premium Apple Devices", description: "Shop the latest iPhone models with expert support and competitive pricing."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}