From c30e724327789d4df7e8eb16efadbfdf1f1fdc9b Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 18:13:41 +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 c7a06f7..6817972 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,76 +1,20 @@ import type { Metadata } from "next"; -import { Nunito } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const nunito = Nunito({ - variable: "--font-nunito", - subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "ElectroHyper - Premium Electric & Hyper Cars", - description: "Experience revolutionary electric hypercars combining cutting-edge technology, unprecedented performance, and sustainable luxury. 2000 HP, 0-60 in 1.9s, 1000+ mile range.", - keywords: "electric hypercar, premium vehicles, performance cars, sustainable luxury, electric vehicles, high-performance EV", - metadataBase: new URL("https://electrohyper.com"), - alternates: { - canonical: "https://electrohyper.com", - }, - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "ElectroHyper - Premium Electric & Hyper Cars", - description: "Revolutionary electric hypercars with 2000 HP performance and sustainable luxury. Explore our collection.", - type: "website", - siteName: "ElectroHyper", - url: "https://electrohyper.com", - images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/a-sleek-futuristic-electric-hypercar-in--1772474047776-5b9e7f2d.png", - alt: "ElectroHyper Premium Electric Hypercar", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "ElectroHyper - The Future of Automotive Performance", - description: "Premium electric hypercars delivering unprecedented acceleration and sustainable luxury.", - images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AOqSUwZ0yvNcX2J0mo572KVlVM/a-sleek-futuristic-electric-hypercar-in--1772474047776-5b9e7f2d.png", - ], - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}