Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 21:00:14 +00:00
2 changed files with 13 additions and 39 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${interTight.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1415,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -9,7 +9,7 @@ import PricingCardThree from "@/components/sections/pricing/PricingCardThree";
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import { CheckCircle, Quote, Sparkles } from "lucide-react";
import { CheckCircle, Quote, Sparkles, Star } from "lucide-react";
export default function LandingPage() {
return (