From 0c8d872e261f8ee4af097ba8247974197510aea2 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 15:32:18 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 71 +++++----------------------------------------- 1 file changed, 7 insertions(+), 64 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8de92e5..f86ec8f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,76 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Open_Sans } 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 openSans = Open_Sans({ - variable: "--font-open-sans", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "TechLaptop Marketplace - Find Your Perfect Laptop Fast", - description: "Browse, compare, and buy the best laptops for work, gaming, and creative projects. Secure checkout, expert guidance, and 30-day guarantee.", - keywords: "laptop marketplace, buy laptops online, laptop comparison, gaming laptops, ultrabooks, business laptops", - metadataBase: new URL("https://techlaptoponline.com"), - alternates: { - canonical: "https://techlaptoponline.com", - }, - openGraph: { - title: "TechLaptop Marketplace - Find Your Perfect Laptop Fast", - description: "Browse, compare, and buy the best laptops. Expert guidance, secure checkout, 50K+ satisfied customers.", - url: "https://techlaptoponline.com", - siteName: "TechLaptop", - type: "website", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZq3AkZrFXbL1VS6nk3OHopger/a-stunning-product-showcase-of-premium-l-1772810362262-8740bfe0.png", - alt: "Premium laptop collection", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "TechLaptop Marketplace - Find Your Perfect Laptop", - description: "Compare specs, read reviews, and buy with confidence. Secure checkout in seconds.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AZq3AkZrFXbL1VS6nk3OHopger/a-stunning-product-showcase-of-premium-l-1772810362262-8740bfe0.png", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "TechLaptop - Find Your Perfect Laptop", description: "Compare specs, read reviews, and buy with confidence. Secure checkout in seconds."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}