6 Commits

Author SHA1 Message Date
1968c24e8b Update src/app/page.tsx 2026-03-04 11:15:52 +00:00
ab076dc074 Update src/app/layout.tsx 2026-03-04 11:15:52 +00:00
b9380ece33 Merge version_1 into main
Merge version_1 into main
2026-03-04 11:14:59 +00:00
671f77c42d Merge version_1 into main
Merge version_1 into main
2026-03-04 11:13:53 +00:00
79632383aa Merge version_1 into main
Merge version_1 into main
2026-03-04 11:12:22 +00:00
151d5c71e9 Merge version_1 into main
Merge version_1 into main
2026-03-04 11:11:00 +00:00
2 changed files with 13 additions and 40 deletions

View File

@@ -1,53 +1,27 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Figtree } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const figtree = Figtree({ const geist = Geist({
variable: "--font-figtree", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
}); });
const halant = Halant({ const geistMono = Geist_Mono({
variable: "--font-halant", subsets: ["latin"], variable: "--font-geist-mono", 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: "XCLUSIVE Barbershop Miami | Luxury Grooming", description: "Miami's #1 luxury barbershop. Premium haircuts, beard services, and grooming experiences for discerning professionals. 5-star rated. Book online.", keywords: "luxury barbershop Miami, premium grooming, executive haircuts, beard trimming, upscale salon, men's grooming", robots: { title: "Create Next App", description: "Generated by create next app"};
index: true,
follow: true,
},
openGraph: {
title: "XCLUSIVE Barbershop Miami | Luxury Grooming Experience", description: "Step into luxury at Miami's premier barbershop. Expert craftsmanship, exclusive atmosphere, 5-star experience.", url: "https://xclusivebarbershop.com", siteName: "XCLUSIVE Barbershop", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/portrait-stylish-male-who-himself-shaving-while-sitting-barber-chair-hairdressing-salon_613910-18629.jpg", alt: "XCLUSIVE Barbershop Luxury Grooming"},
],
},
twitter: {
card: "summary_large_image", title: "XCLUSIVE Barbershop | Miami's Luxury Grooming Destination", description: "Premium barbershop with expert barbers, exclusive atmosphere, and impeccable service.", images: ["http://img.b2bpic.net/free-photo/portrait-stylish-male-who-himself-shaving-while-sitting-barber-chair-hairdressing-salon_613910-18629.jpg"],
},
};
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 className={`${geist.variable} ${geistMono.variable} antialiased`}>
<body {children}
className={`${figtree.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
@@ -1416,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -218,7 +218,7 @@ export default function LandingPage() {
mediaAnimation="slide-up" mediaAnimation="slide-up"
mediaPosition="right" mediaPosition="right"
inputPlaceholder="Enter your email" inputPlaceholder="Enter your email"
buttonText="Subscribe" buttonText="Get Exclusive Access"
termsText="We respect your privacy. Unsubscribe anytime. Expect curated grooming tips and exclusive offers." termsText="We respect your privacy. Unsubscribe anytime. Expect curated grooming tips and exclusive offers."
onSubmit={(email: string) => console.log("Newsletter signup:", email)} onSubmit={(email: string) => console.log("Newsletter signup:", email)}
/> />