70 lines
2.5 KiB
TypeScript
70 lines
2.5 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 { Nunito_Sans } from "next/font/google";
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'アポロ理容室 | プロの理容室',
|
|
description: 'アポロ理容室で精密なヘアカット、クラシックなシェービング、卓越したグルーミングサービスを体験してください。時代を超越したスタイルと温かい雰囲気を提供するあなたの地元の理容室です。東京都荒川区南千住2丁目32-5, 電話: 03-3807-1053',
|
|
keywords: ["barber shop, haircut, shave, grooming, men's salon, local barber, traditional barber, professional barber"],
|
|
openGraph: {
|
|
"title": "The Clipper's Edge | Professional Barber Shop",
|
|
"description": "Experience precision haircuts, classic shaves, and exceptional grooming services at The Clipper's Edge. Your local barber shop for timeless style and a welcoming atmosphere.",
|
|
"url": "/",
|
|
"siteName": "The Clipper's Edge",
|
|
"images": [
|
|
{
|
|
"url": "http://img.b2bpic.net/free-photo/front-view-barbershop-concept_23-2148506206.jpg",
|
|
"alt": "Professional barber giving a haircut"
|
|
}
|
|
],
|
|
"type": "website"
|
|
},
|
|
twitter: {
|
|
"card": "summary_large_image",
|
|
"title": "The Clipper's Edge | Professional Barber Shop",
|
|
"description": "Experience precision haircuts, classic shaves, and exceptional grooming services at The Clipper's Edge. Your local barber shop for timeless style and a welcoming atmosphere.",
|
|
"images": [
|
|
"http://img.b2bpic.net/free-photo/front-view-barbershop-concept_23-2148506206.jpg"
|
|
]
|
|
},
|
|
robots: {
|
|
"index": true,
|
|
"follow": true
|
|
},
|
|
};
|
|
|
|
const nunitoSans = Nunito_Sans({
|
|
variable: "--font-nunito-sans",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body className={`${nunitoSans.variable} antialiased`}>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
}
|