Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-07 08:35:10 +00:00
2 changed files with 7 additions and 45 deletions

View File

@@ -1,58 +1,20 @@
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 "./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 interTight = Inter_Tight({
variable: "--font-inter-tight", subsets: ["latin"],
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Classics Barbershop - Premium Grooming & Expert Barbers", description: "Experience timeless grooming excellence at Classics Barbershop. Expert barbers, traditional techniques, and premium services for the distinguished gentleman.", keywords: "barbershop, haircut, beard grooming, shaving, barber services, men grooming, professional haircut", metadataBase: new URL("https://classicsbarbershop.com"),
alternates: {
canonical: "https://classicsbarbershop.com"},
openGraph: {
title: "Classics Barbershop - Premium Grooming", description: "Expert barbering with traditional techniques and modern styling.", url: "https://classicsbarbershop.com", siteName: "Classics Barbershop", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/hairdresser-cutting-man-s-hair-barber-shop_23-2149186471.jpg", alt: "Classics Barbershop Interior"},
],
},
twitter: {
card: "summary_large_image", title: "Classics Barbershop - Premium Grooming", description: "Expert barbering with traditional techniques and modern styling.", images: ["http://img.b2bpic.net/free-photo/hairdresser-cutting-man-s-hair-barber-shop_23-2149186471.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "Classics Barbershop", description: "Premium barbering services with timeless excellence"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${interTight.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1420,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -175,6 +175,7 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
carouselMode="buttons"
cardClassName="[&:has([data-plan-id='2'])]:ring-2 [&:has([data-plan-id='2'])]:ring-offset-2 [&:has([data-plan-id='2'])]:ring-offset-background [&:has([data-plan-id='2'])]:ring-primary-cta"
/>
</div>