10 Commits

Author SHA1 Message Date
c6740f4409 Update src/app/page.tsx 2026-03-06 01:23:40 +00:00
4d4d96a899 Update src/app/layout.tsx 2026-03-06 01:23:40 +00:00
6a005ce947 Merge version_1 into main
Merge version_1 into main
2026-03-06 01:03:33 +00:00
e407e35477 Merge version_1 into main
Merge version_1 into main
2026-03-06 01:02:41 +00:00
6d29471c11 Merge version_1 into main
Merge version_1 into main
2026-03-06 01:02:23 +00:00
e00ac5c7c9 Merge version_1 into main
Merge version_1 into main
2026-03-06 01:01:49 +00:00
2c8e0caf28 Merge version_1 into main
Merge version_1 into main
2026-03-06 01:01:12 +00:00
b6b5fde391 Merge version_1 into main
Merge version_1 into main
2026-03-06 00:50:33 +00:00
47006d12b2 Merge version_1 into main
Merge version_1 into main
2026-03-06 00:49:48 +00:00
c7e6206d3f Merge version_1 into main
Merge version_1 into main
2026-03-06 00:48:44 +00:00
2 changed files with 8 additions and 45 deletions

View File

@@ -1,52 +1,16 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } 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"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "USA Barbershop - Premium Haircuts & Beard Grooming in Harrisonburg, VA", description: "Award-winning barbershop in Harrisonburg offering professional haircuts, beard grooming, and hot shaves. Trusted by 500+ customers. Open Mon-Fri 10AM-9PM. Walk-ins welcome!", keywords: "barbershop, haircuts, beard grooming, barber, Harrisonburg VA, professional barber, men's grooming, fade haircut", metadataBase: new URL("https://usabarbershop.net"), title: "USA Barbershop", description: "Premium barbering services with expert barbers"};
alternates: {
canonical: "https://usabarbershop.net"},
openGraph: {
title: "USA Barbershop - Premium Grooming Services", description: "Experience exceptional barbering services at USA Barbershop in Harrisonburg, VA. 5-star rated by 500+ customers.", url: "https://usabarbershop.net", siteName: "USA Barbershop", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/brown-vintage-leather-chairs-stylish-barber-shop_627829-6188.jpg", alt: "USA Barbershop Interior"},
],
},
twitter: {
card: "summary_large_image", title: "USA Barbershop - Premium Barbering", description: "Professional haircuts, beard grooming & hot shaves. Trusted by 500+ customers. Harrisonburg, VA.", images: ["http://img.b2bpic.net/free-photo/brown-vintage-leather-chairs-stylish-barber-shop_627829-6188.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body>{children}
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1414,7 +1378,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -20,7 +20,7 @@ export default function LandingPage() {
borderRadius="rounded" borderRadius="rounded"
contentWidth="medium" contentWidth="medium"
sizing="medium" sizing="medium"
background="fluid" background="aurora"
cardStyle="soft-shadow" cardStyle="soft-shadow"
primaryButtonStyle="gradient" primaryButtonStyle="gradient"
secondaryButtonStyle="radial-glow" secondaryButtonStyle="radial-glow"
@@ -46,7 +46,7 @@ export default function LandingPage() {
<HeroCentered <HeroCentered
title="Premium Barbershop Experience" title="Premium Barbershop Experience"
description="Exceptional haircuts, beard grooming, and professional service in a welcoming atmosphere. Trusted by over 500 satisfied customers." description="Exceptional haircuts, beard grooming, and professional service in a welcoming atmosphere. Trusted by over 500 satisfied customers."
background={{ variant: "sparkles-gradient" }} background={{ variant: "canvas-reveal" }}
avatars={[ avatars={[
{ src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Satisfied customer" }, { src: "http://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg", alt: "Satisfied customer" },
{ src: "http://img.b2bpic.net/free-photo/smiling-millennial-man-looking-camera-cafe-headshot-portrait_1163-5163.jpg", alt: "Happy client" }, { src: "http://img.b2bpic.net/free-photo/smiling-millennial-man-looking-camera-cafe-headshot-portrait_1163-5163.jpg", alt: "Happy client" },
@@ -166,7 +166,7 @@ export default function LandingPage() {
<ContactText <ContactText
text="Ready to experience the USA Barbershop difference? Book your appointment today and discover why hundreds of customers trust us for their grooming needs." text="Ready to experience the USA Barbershop difference? Book your appointment today and discover why hundreds of customers trust us for their grooming needs."
animationType="entrance-slide" animationType="entrance-slide"
background={{ variant: "plain" }} background={{ variant: "downward-rays-animated" }}
useInvertedBackground={false} useInvertedBackground={false}
buttons={[ buttons={[
{ text: "Book Appointment", href: "https://usabarbershop.net" }, { text: "Book Appointment", href: "https://usabarbershop.net" },