Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #2.
This commit is contained in:
2026-03-09 23:32:26 +00:00
2 changed files with 8 additions and 46 deletions

View File

@@ -1,57 +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";
import "@/styles/globals.css";
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: "VINTAGE CUTS Barbershop - Professional Haircuts in Brampton", description: "Premium barbering services in Brampton, ON. Expert fades, beard grooming, and classic haircuts. Call +1 (289) 946-4606 to book your appointment today.", keywords: "barbershop Brampton, haircut, barber, beard trim, fade, grooming services", metadataBase: new URL("https://vintagecutsbarber.com"),
alternates: {
canonical: "https://vintagecutsbarber.com"},
openGraph: {
title: "VINTAGE CUTS - Premier Barbershop in Brampton", description: "Experience professional barbering excellence. Expert barbers, welcoming atmosphere, quality service.", siteName: "VINTAGE CUTS", type: "website", url: "https://vintagecutsbarber.com", images: [
{
url: "http://img.b2bpic.net/free-photo/female-hairdresser-cutting-hair-bearded-hipster-male-saloon_613910-5643.jpg", alt: "VINTAGE CUTS Barbershop"},
],
},
twitter: {
card: "summary_large_image", title: "VINTAGE CUTS - Premier Barbershop in Brampton", description: "Premium barbering services. Expert haircuts, beard grooming, and more.", images: ["http://img.b2bpic.net/free-photo/female-hairdresser-cutting-hair-bearded-hipster-male-saloon_613910-5643.jpg"],
},
robots: {
index: true,
follow: true,
},
};
title: "VINTAGE CUTS Barbershop - Premium Barbering Excellence in Brampton", description: "Experience classic craftsmanship and modern styling at VINTAGE CUTS. Professional barbering services in Brampton, ON."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunito.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -132,7 +132,7 @@ export default function LandingPage() {
<div id="testimonials" data-section="testimonials">
<TestimonialCardThirteen
title="What Our Clients Say"
description="Join thousands of satisfied customers who trust VINTAGE CUTS for their grooming needs."
description="Trusted by 3,000+ clients across Brampton who rely on VINTAGE CUTS for their grooming needs."
tag="Testimonials"
tagIcon={Star}
tagAnimation="slide-up"