From 6e6a45ee8c8d04d77398ae45c9dd68783e98edb1 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 16:44:48 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1425 -------------------------------------------- 1 file changed, 1425 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index f92ccf0..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1425 +0,0 @@ -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"], -}); - -export const metadata: Metadata = { - title: "F1 Experience – Luxury Automotive Engineering at 342 km/h", description: "Experience the pinnacle of automotive performance. WebGL-powered cinematic journey through F1 engineering, from factory to track. Zero to 342 km/h in 3 seconds.", keywords: "F1 racing, luxury automotive, high-performance engineering, motorsport experience, speed", metadataBase: new URL("https://f1experience.com"), - alternates: { - canonical: "https://f1experience.com"}, - openGraph: { - title: "F1 Experience – The Art of Speed", description: "A cinematic WebGL experience showcasing the pinnacle of automotive engineering and performance design.", url: "https://f1experience.com", siteName: "F1 Experience", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/motorsport-showdown-with-racing-cars_23-2151821443.jpg", alt: "F1 Car Silhouette – Racing Red on Black"}, - ], - }, - twitter: { - card: "summary_large_image", title: "F1 Experience – The Art of Speed", description: "Zero to 342 km/h. Engineered to win.", images: ["http://img.b2bpic.net/free-photo/motorsport-showdown-with-racing-cars_23-2151821443.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -