Files
4a91d16f-53d6-40c6-b8c5-a03…/src/app/layout.tsx
2026-03-25 20:51:31 +00:00

74 lines
2.6 KiB
TypeScript

import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import "@/lib/gsap-setup";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Montserrat } from "next/font/google";
export const metadata: Metadata = {
title: 'Restore Your Favorite Shoes & Leather Goods | Totem Lake Shoe Repair',
description: 'Restore your favorite shoes and leather goods with unmatched craftsmanship. Family-owned for 35+ years, trusted by the community for luxury care and premium repair services.',
keywords: ["shoe repair, boot restoration, leather bag repair, designer heel repair, Totem Lake, craftsman, luxury footwear, shoe care"],
openGraph: {
"title": "Totem Lake Shoe Repair | Luxury Craftsmanship for Your Footwear",
"description": "Experience premium shoe repair and restoration services at Totem Lake Shoe Repair. Family-owned for 35+ years, trusted by the community for luxury craftsmanship.",
"url": "https://www.totemlakeshoerepair.com",
"siteName": "Totem Lake Shoe Repair",
"images": [
{
"url": "http://img.b2bpic.net/free-photo/talented-cobbler-is-working-pair-black-men-s-shoes-his-workshop_613910-3817.jpg",
"alt": "Craftsman working on a luxury shoe"
}
],
"type": "website"
},
twitter: {
"card": "summary_large_image",
"title": "Totem Lake Shoe Repair | Luxury Craftsmanship for Your Footwear",
"description": "Experience premium shoe repair and restoration services at Totem Lake Shoe Repair. Family-owned for 35+ years, trusted by the community for luxury craftsmanship.",
"images": [
"http://img.b2bpic.net/free-photo/talented-cobbler-is-working-pair-black-men-s-shoes-his-workshop_613910-3817.jpg"
]
},
robots: {
"index": true,
"follow": true
},
};
const montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}