Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 39f48447ee | |||
| 1d5461a965 | |||
| a6e5084651 | |||
| 2189d6bff2 | |||
| 7e1503de08 | |||
| a0712a49c3 |
@@ -1,51 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Mulish } from "next/font/google";
|
|
||||||
import { Inter } 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 mulish = Mulish({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-mulish", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Sam's Barber Shop Toronto | Premium Haircuts & Beard Trims", description: "Classic barbershop on St Clair in Toronto. Expert haircuts, beard trims, and hot shaves. 4.9★ rated locally. Call 416-651-7056.", keywords: "barber shop Toronto, haircut St Clair, beard trim Toronto, classic barbershop, men's haircut, local barber", metadataBase: new URL("https://samsbarber.shop"),
|
title: "Sam's Barber Shop - Premium Barbering in Toronto", description: "Local, classic barbershop on St Clair. Haircuts, beard trims, and timeless service."};
|
||||||
alternates: {
|
|
||||||
canonical: "https://samsbarber.shop"},
|
|
||||||
robots: {
|
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Sam's Barber Shop Toronto", description: "Classic barbershop. Premium haircuts, beard trims, and honest service on St Clair. Highly rated locally.", url: "https://samsbarber.shop", siteName: "Sam's Barber Shop", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/bearded-man-drinking-chocolate-drink-standing-with-bicycle-city-street_23-2148176596.jpg", alt: "Sam's Barber Shop"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Sam's Barber Shop Toronto", description: "Classic barbershop on St Clair. Premium haircuts, beard trims, 4.9★ rated.", images: ["http://img.b2bpic.net/free-photo/bearded-man-drinking-chocolate-drink-standing-with-bicycle-city-street_23-2148176596.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={inter.className}>{children}
|
||||||
<body
|
|
||||||
className={`${mulish.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1413,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -45,6 +45,7 @@ export default function LandingPage() {
|
|||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
tag="4.9★ Highly Rated"
|
tag="4.9★ Highly Rated"
|
||||||
buttons={[
|
buttons={[
|
||||||
|
{ text: "Book Appointment", href: "tel:416-651-7056" },
|
||||||
{ text: "Call 416-651-7056", href: "tel:416-651-7056" },
|
{ text: "Call 416-651-7056", href: "tel:416-651-7056" },
|
||||||
{ text: "Get Directions", href: "https://maps.google.com/?q=573+St+Clair+Ave+W,+Toronto,+ON+M6C+1A3" },
|
{ text: "Get Directions", href: "https://maps.google.com/?q=573+St+Clair+Ave+W,+Toronto,+ON+M6C+1A3" },
|
||||||
]}
|
]}
|
||||||
|
|||||||
Reference in New Issue
Block a user