From 9de878f183846b40d842bdc3de67e96e042a95f1 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 07:31:16 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 38 ++++++-------------------------------- 1 file changed, 6 insertions(+), 32 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5bc98a3..5a33235 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,45 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito } 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 nunito = Nunito({ - variable: "--font-nunito", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Automotion Cars Europa | Curated European Automotive Listings", description: "A selective platform connecting serious buyers with trusted dealerships across Europe. Transparency, credibility, and professional partnerships.", keywords: "european cars, automotive listings, dealership platform, curated vehicles, europe", robots: { - index: true, - follow: true, - }, -}; + title: "Automotion Cars Europa | Curated European Automotive Listings", description: "A selective platform connecting serious buyers with trusted dealerships across Europe."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}