From ce4ea2ce3a3547204ddc9c3c80f15b3df06619af Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 15:42:33 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1438 +------------------------------------------- 1 file changed, 8 insertions(+), 1430 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 59b8390..8d682f8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1442 +1,21 @@ + 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: "TechNova Computers | Gaming PCs, Laptops & Computer Components", - description: "High-performance gaming PCs, office computers, laptops, and components. Trusted local computer store with warranty support and competitive pricing. Custom PC builder available.", - keywords: "gaming PC store, buy computer online, custom PC builder, laptop shop, computer accessories, gaming computer, office PC, high-performance computers, PC components, gaming rig", - metadataBase: new URL("https://technova-computers.com"), - alternates: { - canonical: "https://technova-computers.com", - }, - openGraph: { - title: "TechNova Computers | Premium Gaming PCs & Laptops", - description: "Discover high-performance computers for gaming, work, and creativity. Expert support and competitive prices.", - siteName: "TechNova Computers", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/professional-video-gamer-female-playing-online-shooter-game-late-night-living-room_482257-22778.jpg", - alt: "TechNova Computers - Gaming PC", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "TechNova Computers - High-Performance PCs", - description: "Premium gaming and office computers with expert support.", - images: [ - "http://img.b2bpic.net/free-photo/professional-video-gamer-female-playing-online-shooter-game-late-night-living-room_482257-22778.jpg", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "TechNova Computers - High-Performance PCs, Gaming Computers & Components", description: "Shop premium gaming PCs, office computers, laptops, and high-performance components. Expert recommendations, competitive pricing, and trusted service."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -