Merge version_2 into main #4

Merged
bender merged 2 commits from version_2 into main 2026-03-04 00:21:48 +00:00
2 changed files with 7 additions and 47 deletions

View File

@@ -1,59 +1,20 @@
import type { Metadata } from "next";
import { Figtree } from "next/font/google";
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 figtree = Figtree({
variable: "--font-figtree", subsets: ["latin"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Studio09 Barbershop | Premium Grooming in Houston", description: "Experience premium barbering at Studio09. Expert cuts, beard grooming, and shave services. Located at 11263 SW Fwy Frontage Rd, Houston. Walk-ins welcome. (832) 894-1547", keywords: "barbershop Houston, haircut, fade, beard grooming, professional barber, SW Freeway", metadataBase: new URL("https://studio09barbershop.com"),
alternates: {
canonical: "https://studio09barbershop.com"
},
openGraph: {
title: "Studio09 Barbershop - Premium Grooming Experience", description: "Houston's premier barbershop for precision cuts, expert beard grooming, and classic shaving. Walk-ins welcome.", type: "website", siteName: "Studio09 Barbershop", url: "https://studio09barbershop.com", images: [
{
url: "http://img.b2bpic.net/free-photo/customer-standing-front-mirror-barbershop_23-2148181953.jpg", alt: "Studio09 Barbershop Interior"
}
]
},
twitter: {
card: "summary_large_image", title: "Studio09 Barbershop - Premium Houston Grooming", description: "Expert barbering, beard grooming, and traditional shaves. Visit us at 11263 SW Fwy Frontage Rd.", images: ["http://img.b2bpic.net/free-photo/customer-standing-front-mirror-barbershop_23-2148181953.jpg"]
},
robots: {
index: true,
follow: true
}
};
title: "Studio09 Barbershop | Premium Grooming in Houston", description: "Houston's premier barbershop offering precision cuts, expert styling, and premium grooming services. Walk-ins welcome."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${figtree.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -153,7 +153,7 @@ export default function LandingPage() {
ctaTitle="Book Your Appointment"
ctaDescription="Reserve your premium grooming experience at Studio09. Call us to schedule or visit for a walk-in."
ctaIcon={Phone}
ctaButton={{ text: "Call (832) 894-1547", href: "tel:+18328941547" }}
ctaButton={{ text: "Schedule Free Consultation", href: "tel:+18328941547" }}
faqs={[
{ id: "1", title: "What are your hours of operation?", content: "We open at 10 AM daily to serve our clients with precision barbering. Please call us at (832) 894-1547 for specific closing times and holiday hours." },
{ id: "2", title: "Do you accept walk-ins?", content: "Yes! We accept walk-ins and love serving new clients without appointments. However, we recommend calling ahead during peak hours to minimize wait times." },