diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 43e44af..39119ee 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,74 +1,28 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Roboto } from "next/font/google";
+import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const halant = Halant({
- variable: "--font-halant",
- subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
+const geist = Geist({
+ variable: "--font-geist-sans", subsets: ["latin"],
});
-const inter = Inter({
- variable: "--font-inter",
- subsets: ["latin"],
-});
-
-const roboto = Roboto({
- variable: "--font-roboto",
- subsets: ["latin"],
- weight: ["100", "300", "400", "500", "700", "900"],
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
- title: "SHOEMOB | Premium Luxury Shoes & Mobile Accessories",
- description: "Own the street with SHOEMOB's curated collection of premium sneakers, luxury shoes, and elite mobile accessories. Experience Apple-level aesthetic and exclusive street-luxury lifestyle.",
- keywords: "luxury shoes, premium sneakers, streetwear, mobile accessories, designer footwear, phone cases, wireless earbuds, smartwatch accessories",
- metadataBase: new URL("https://shoemob.com"),
- alternates: {
- canonical: "https://shoemob.com",
- },
- openGraph: {
- title: "SHOEMOB | Premium Luxury Shoes & Mobile Accessories",
- description: "Own The Street. Own The Future. Premium Footwear & Elite Mobile Accessories.",
- siteName: "SHOEMOB",
- type: "website",
- images: [
- {
- url: "http://img.b2bpic.net/free-photo/fashion-shoes-sneaker_1203-8084.jpg",
- alt: "SHOEMOB Premium Collection",
- },
- ],
- },
- twitter: {
- card: "summary_large_image",
- title: "SHOEMOB | Premium Luxury Shoes & Mobile Accessories",
- description: "Own the street with SHOEMOB's premium collection",
- images: ["http://img.b2bpic.net/free-photo/fashion-shoes-sneaker_1203-8084.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "SHOEMOB - Premium Shoes & Mobile Accessories", description: "Elevate your style with premium footwear and elite mobile accessories from SHOEMOB."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-