diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 633a6d9..31841fc 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,1417 +1,42 @@
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";
+import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper";
+import { Tag } from "@/components/tag/Tag";
-const dmSans = DM_Sans({
- variable: "--font-dm-sans", subsets: ["latin"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ variable: "--font-inter", subsets: ["latin"] });
export const metadata: Metadata = {
- title: "NelosShop - Authentic Designer Shoes & Luxury Reselling", description: "Shop authentic designer shoes, premium rep clothing, and luxury accessories at NelosShop. 10K+ verified items with fast shipping and 99% customer satisfaction.", keywords: "designer shoes, luxury reselling, authentic sneakers, designer fashion, luxury accessories, rep clothing, online shopping", metadataBase: new URL("https://nelosshop.com"),
- alternates: {
- canonical: "https://nelosshop.com"},
- openGraph: {
- title: "NelosShop - Premium Designer Reselling", description: "Discover authentic designer shoes, exclusive clothing, and luxury accessories. Verified quality, competitive prices, fast shipping.", url: "https://nelosshop.com", siteName: "NelosShop", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/summer-composition-with-slippers-books-cake-lemonade-female-hands_169016-40035.jpg", alt: "luxury designer shoes collection showcase"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "NelosShop - Authentic Designer Reselling", description: "Premium designer shoes, luxury accessories, and authentic apparel at competitive prices.", images: ["http://img.b2bpic.net/free-photo/summer-composition-with-slippers-books-cake-lemonade-female-hands_169016-40035.jpg"],
- },
- robots: {
- index: true,
- follow: true,
- },
-};
+ title: "NelosShop - Premium Designer & Luxury Reselling", description: "Discover authentic designer shoes, exclusive rep clothing, and luxury accessories. Verified quality, competitive pricing, fast shipping."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-