From f56581bd463e0fe3a760c63f0b744f05fdfdd4a6 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 19:49:57 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1417 +------------------------------------------- 1 file changed, 6 insertions(+), 1411 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 325f60c..1bc457a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1424 +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: "TechVault - Premium Tech E-Commerce Platform", description: "Next-gen tech e-commerce with real-time inventory, Stripe payments, admin dashboard, and smart pricing. Start selling premium tech products today.", keywords: "tech ecommerce, online store, product management, payment processing, inventory management", metadataBase: new URL("https://techvault.io"), - alternates: { - canonical: "https://techvault.io"}, - openGraph: { - title: "TechVault - Premium Tech E-Commerce", description: "Complete tech e-commerce solution with payments, inventory management, and admin dashboard", url: "https://techvault.io", siteName: "TechVault", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AiptcO4QrzBpwIQbUIl2kal97h/a-sleek-dark-tech-dashboard-interface-sh-1773085533392-c7e92339.png", alt: "TechVault Dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "TechVault - Premium Tech E-Commerce", description: "Next-gen e-commerce platform for tech products", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AiptcO4QrzBpwIQbUIl2kal97h/a-sleek-dark-tech-dashboard-interface-sh-1773085533392-c7e92339.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "TechVault - Premium Tech E-Commerce Platform", description: "Next-generation e-commerce platform for cutting-edge technology with seamless checkout and real-time inventory tracking."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -