Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-05 19:31:39 +00:00
2 changed files with 7 additions and 37 deletions

View File

@@ -1,49 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Mulish } 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 mulish = Mulish({
variable: "--font-mulish", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "JR's Barbershop - Expert Haircuts & Professional Grooming", description: "Premium barbershop offering expert haircuts, straight razor shaves, and beard grooming. Visit JR's Barbershop for quality grooming services.", keywords: "barbershop, haircut, shave, beard grooming, professional barber, men's haircut, fade cut", openGraph: {
title: "JR's Barbershop - Premium Grooming Services", description: "Expert haircuts and professional grooming services. Your trusted barbershop for quality cuts and traditional shaves.", siteName: "JR's Barbershop", type: "website"},
twitter: {
card: "summary_large_image", title: "JR's Barbershop - Professional Haircuts & Grooming"},
robots: {
index: true,
follow: true,
},
};
title: "JR's Barbershop", description: "Premium grooming and professional haircuts"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${mulish.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -217,7 +217,7 @@ export default function LandingPage() {
description="Book your appointment today and experience the JR's Barbershop difference. Call us now or visit our shop to discuss your grooming needs with our expert team."
buttons={[
{ text: "Call Us Now", href: "tel:+15551234567" },
{ text: "Visit Our Shop", href: "#" }
{ text: "Get Directions", href: "#" }
]}
buttonAnimation="slide-up"
background={{ variant: "plain" }}