From 349e6526b367c05a4e97939ff4c41aec13bd1ad1 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 06:38:12 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 72 ++++++---------------------------------------- 1 file changed, 8 insertions(+), 64 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1fded1a..f74279a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,75 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Inter_Tight } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); - -const interTight = Inter_Tight({ - variable: "--font-inter-tight", - subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Déstock Market - Global Drinks & Multicultural Products at Discount", - description: "Shop authentic multicultural beverages, snacks, and specialty products from 50+ countries. Unbeatable discount prices on international brands. Free shipping on orders over $50.", - keywords: "multicultural products, international drinks, discount beverages, specialty snacks, global marketplace, authentic products, ethnic grocery", - metadataBase: new URL("https://destockmarket.com"), - alternates: { - canonical: "https://destockmarket.com", - }, - openGraph: { - title: "Déstock Market - Global Flavors at Unbeatable Prices", - description: "Discover authentic multicultural beverages and specialty products from around the world at discount prices.", - url: "https://destockmarket.com", - siteName: "Déstock Market", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/group-friends-shopping-mall_53876-46893.jpg", - alt: "Déstock Market - Multicultural marketplace", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Déstock Market - Global Drinks & Multicultural Products", - description: "Shop authentic beverages and specialty items from 50+ countries at unbeatable prices.", - images: ["http://img.b2bpic.net/free-photo/group-friends-shopping-mall_53876-46893.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Déstock Market - Global Flavors at Unbeatable Prices", description: "Discover authentic beverages, snacks, and specialty products from 50+ countries at up to 60% off retail prices. Shop multicultural groceries online."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}