From 4f91396a971adcdb1a2c3402d7cec1b7d2aee001 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 16:43:14 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1419 +------------------------------------------- 1 file changed, 6 insertions(+), 1413 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index c92ff49..f5309ac 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1426 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Roboto } 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 roboto = Roboto({ - variable: "--font-roboto", subsets: ["latin"], - weight: ["100", "300", "400", "500", "700", "900"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "NovaTech Laptop | Premium Performance Computing", description: "Experience next-generation performance with NovaTech laptops. AI-powered processors, stunning 4K displays, 20-hour battery life. Designed for professionals.", keywords: "laptop, high-performance, gaming laptop, creator laptop, professional laptop, RTX graphics, 4K display", metadataBase: new URL("https://novatech.com"), - alternates: { - canonical: "https://novatech.com"}, - openGraph: { - title: "NovaTech Laptop | The Future of Computing", description: "Premium laptops engineered for excellence. Stunning performance, stunning design. Trusted by 500K+ professionals worldwide.", url: "https://novatech.com", siteName: "NovaTech", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AckesHvvhqhTYYqz6ByJ9dxH04/a-sleek-modern-high-end-laptop-displayed-1772901488739-06820f50.png", alt: "NovaTech Laptop Premium Design"}, - ], - }, - twitter: { - card: "summary_large_image", title: "NovaTech Laptop | Premium Performance", description: "Experience next-generation computing with NovaTech. AI-powered, stunning display, all-day battery.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AckesHvvhqhTYYqz6ByJ9dxH04/a-sleek-modern-high-end-laptop-displayed-1772901488739-06820f50.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "NovaTech - Next-Generation Computing", description: "Experience the future of computing with NovaTech. AI-powered processors, stunning 4K displays, and all-day battery life."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -