From d71bee2aeab96d41832f9484f783ad8fbe84ff36 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 21:00:09 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 50 +++++++++++----------------------------------- 1 file changed, 12 insertions(+), 38 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e42ab09..d42ec3e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Inter_Tight } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const interTight = Inter_Tight({ - variable: "--font-inter-tight", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Coiffeur in Bern (4.9★) | Präzise Schnitte & Bartpflege", description: "4.9★ bewertet (85+ Rezensionen). Präzise Herrenhaarschnitte, Fades & Bartpflege in Bern. Jetzt anrufen oder Route starten.", keywords: "coiffeur bern, herrencoiffeur bern, barber bern, haarschnitt bern, friseur bern, bartpflege bern", metadataBase: new URL("https://hakicoiffeur.ch"), - alternates: { - canonical: "https://hakicoiffeur.ch"}, - openGraph: { - title: "Haki Coiffeur Bern – Premium Haarschnitte & Bartpflege", description: "Top-bewerteter Coiffeur mit 4.9★. Professionelle Herrenhaarschnitte, Fades und Bartpflege in Bern.", url: "https://hakicoiffeur.ch", siteName: "Haki Coiffeur", type: "website"}, - twitter: { - card: "summary_large_image", title: "Haki Coiffeur Bern", description: "4.9★ Coiffeur für präzise Haarschnitte und Bartpflege in Bern"}, - robots: { - index: true, - follow: true, - }, -}; + title: "Haki Coiffeur Bern", description: "Top Coiffeur in Bern – Präzise Schnitte & Bartpflege"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +