Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9aa67eb7a4 | |||
| 0afc7f83e2 | |||
| 96bd47f64e | |||
| 2729cc93f6 | |||
| ac4426bcae |
@@ -1,60 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import { Poppins } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const poppins = Poppins({
|
|
||||||
variable: "--font-poppins", subsets: ["latin"],
|
|
||||||
weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Ten Thirty Barber Stylist | Premium Barbershop", description: "Premium barbershop offering expert haircuts, traditional shaves, and beard grooming. Book your appointment today.", keywords: "barbershop, haircut, shave, beard grooming, barber, men grooming, premium haircut", metadataBase: new URL("https://example.com"),
|
title: "Ten Thirty Barber Stylist", description: "Premium barbershop crafting timeless styles and refined grooming experiences"};
|
||||||
alternates: {
|
|
||||||
canonical: "https://example.com"
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Ten Thirty Barber Stylist", description: "Experience premium barbering and men's grooming at Ten Thirty. Expert barbers, timeless cuts, traditional shaves.", url: "https://example.com", siteName: "Ten Thirty Barber Stylist", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/hairdresser-starting-work-with-client_23-2147769744.jpg", alt: "modern barbershop interior clean aesthetic"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Ten Thirty Barber Stylist", description: "Premium barbershop for expert haircuts and grooming.", images: ["http://img.b2bpic.net/free-photo/hairdresser-starting-work-with-client_23-2147769744.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 className={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${halant.variable} ${inter.variable} ${poppins.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1422,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -125,7 +125,7 @@ export default function LandingPage() {
|
|||||||
<div id="testimonials" data-section="testimonials">
|
<div id="testimonials" data-section="testimonials">
|
||||||
<TestimonialCardTwo
|
<TestimonialCardTwo
|
||||||
title="What Our Clients Say"
|
title="What Our Clients Say"
|
||||||
description="Hear from customers who trust Ten Thirty Barber Stylist for their grooming needs."
|
description="⭐ 4.9 out of 5 Stars | 500+ Happy Customers — Hear from satisfied customers who trust Ten Thirty Barber Stylist for their grooming needs."
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1", name: "James Rodriguez", role: "Regular Customer", testimonial: "Ten Thirty is the best barbershop I've ever been to. Marcus really listens to what you want and delivers every single time. My go-to place now.", imageSrc: "http://img.b2bpic.net/free-photo/blond-man-happy-expression_1194-2881.jpg", imageAlt: "James Rodriguez testimonial"
|
id: "1", name: "James Rodriguez", role: "Regular Customer", testimonial: "Ten Thirty is the best barbershop I've ever been to. Marcus really listens to what you want and delivers every single time. My go-to place now.", imageSrc: "http://img.b2bpic.net/free-photo/blond-man-happy-expression_1194-2881.jpg", imageAlt: "James Rodriguez testimonial"
|
||||||
|
|||||||
Reference in New Issue
Block a user