Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ef99e48747 | |||
| cf75427891 | |||
| b7cb868602 | |||
| 673c6e0c30 | |||
| fbea55565f | |||
| 6e36513911 | |||
| 2a645db1f8 | |||
| fa4a607056 | |||
| 140430a0a8 |
@@ -1,50 +1,20 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import { Manrope } from "next/font/google";
|
||||
import { DM_Sans } 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 manrope = Manrope({
|
||||
variable: "--font-manrope", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const dmSans = DM_Sans({
|
||||
variable: "--font-dm-sans", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "U.S. BARBER | Premium Barbershop Services", description: "Experience expert barbering at U.S. BARBER. Precision haircuts, beard grooming, and traditional shaving services by master barbers. Book your appointment today.", keywords: "barbershop, haircut, barber, beard grooming, fades, shaving, grooming services", openGraph: {
|
||||
title: "U.S. BARBER | Premium Barbershop Services", description: "Experience expert barbering at U.S. BARBER. Precision haircuts, beard grooming, and traditional shaving services by master barbers.", siteName: "U.S. BARBER", type: "website"},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "U.S. BARBER | Premium Barbershop Services", description: "Experience expert barbering at U.S. BARBER. Premium haircuts and grooming services."},
|
||||
};
|
||||
title: "U.S. BARBER - Premium Barbershop Services", description: "Experience traditional barbering excellence with modern expertise. Premium haircuts, expert shaving, and grooming services."};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}>) {
|
||||
}) {
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${manrope.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<html lang="en">
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1412,7 +1382,6 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -82,25 +82,29 @@ export default function LandingPage() {
|
||||
carouselMode="buttons"
|
||||
features={[
|
||||
{
|
||||
title: "Classic Haircuts", description: "Precision cuts tailored to your style and face shape", bentoComponent: "icon-info-cards", items: [
|
||||
title: "Classic Haircuts", description: "Precision cuts tailored to your style and face shape", button: { text: "Book Now", href: "contact" },
|
||||
bentoComponent: "icon-info-cards", items: [
|
||||
{ icon: Zap, label: "Quick Service", value: "45 min" },
|
||||
{ icon: Award, label: "Expert Skills", value: "20+ years" },
|
||||
{ icon: Users, label: "Team Size", value: "8 barbers" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Beard Grooming", description: "Professional beard shaping and maintenance", bentoComponent: "3d-stack-cards", items: [
|
||||
title: "Beard Grooming", description: "Professional beard shaping and maintenance", button: { text: "Book Now", href: "contact" },
|
||||
bentoComponent: "3d-stack-cards", items: [
|
||||
{ icon: Shield, title: "Precision", subtitle: "Expert Shaping", detail: "Detailed beard sculpting" },
|
||||
{ icon: Sparkles, title: "Care", subtitle: "Premium Products", detail: "Quality beard care" },
|
||||
{ icon: Award, title: "Finish", subtitle: "Perfect Edge", detail: "Crisp, clean lines" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Fade Variations", description: "Modern fade styles from subtle to bold", bentoComponent: "marquee", centerIcon: Scissors,
|
||||
title: "Fade Variations", description: "Modern fade styles from subtle to bold", button: { text: "Book Now", href: "contact" },
|
||||
bentoComponent: "marquee", centerIcon: Scissors,
|
||||
variant: "text", texts: ["Skin Fade", "Drop Fade", "Temple Fade", "Burst Fade"]
|
||||
},
|
||||
{
|
||||
title: "Hot Towel Shave", description: "Classic straight razor shaving experience", bentoComponent: "reveal-icon", icon: Zap
|
||||
title: "Hot Towel Shave", description: "Classic straight razor shaving experience", button: { text: "Book Now", href: "contact" },
|
||||
bentoComponent: "reveal-icon", icon: Zap
|
||||
}
|
||||
]}
|
||||
/>
|
||||
@@ -197,7 +201,7 @@ export default function LandingPage() {
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
inputPlaceholder="your@email.com"
|
||||
buttonText="Schedule Now"
|
||||
buttonText="Book My Cut"
|
||||
termsText="We respect your privacy. Unsubscribe at any time."
|
||||
/>
|
||||
</div>
|
||||
@@ -235,4 +239,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user