Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c6740f4409 | |||
| 4d4d96a899 | |||
| 6a005ce947 | |||
| e407e35477 | |||
| 6d29471c11 | |||
| e00ac5c7c9 | |||
| 2c8e0caf28 | |||
| b6b5fde391 | |||
| 47006d12b2 | |||
| c7e6206d3f |
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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" },
|
||||||
|
|||||||
Reference in New Issue
Block a user