From 953f24c3d4d2900df3a6827017b355438c1807b4 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 06:22:58 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++---------------------------------------- 1 file changed, 6 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 44aa762..220c501 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Figtree } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "TradePulse - Buy & Sell Premium Products Online", description: "Discover trusted marketplace for buying and selling premium products. Join 50K+ traders. Secure transactions, verified sellers, transparent pricing.", keywords: "buy sell marketplace, online trading platform, ecommerce, trusted sellers", metadataBase: new URL("https://tradepulse.com"), - alternates: { - canonical: "https://tradepulse.com"}, - openGraph: { - title: "TradePulse - Your Trusted Trading Platform", description: "Buy and sell premium products with confidence. Join thousands of successful traders.", url: "https://tradepulse.com", siteName: "TradePulse", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-vector/gradient-dark-mode-app-template_23-2150498015.jpg", alt: "TradePulse Marketplace Platform"}, - ], - }, - twitter: { - card: "summary_large_image", title: "TradePulse - Buy & Sell Online", description: "Trusted marketplace for premium product trading", images: ["http://img.b2bpic.net/free-vector/gradient-dark-mode-app-template_23-2150498015.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "TradePulse - Buy and Sell Premium Products", description: "Trade with confidence on TradePulse. Secure marketplace for buying and selling premium products. Trusted by thousands of traders worldwide."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}