Files
c7b6f3e7-e7d5-4c0c-8539-aae…/src/app/layout.tsx
2026-05-20 20:09:03 +00:00

49 lines
1.4 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 { getVisualEditScript } from "@/utils/visual-edit-script";
import { Mulish } from "next/font/google";
export const metadata: Metadata = {
title: 'Arcade Books | Your Local Bookstore in Rye, NY',
description: 'Discover a cozy collection of books at Arcade Books in Rye, NY. Friendly service, curated reads, and a true nook-and-cranny bookstore experience.',
openGraph: {
"title": "Arcade Books | Rye's Favorite Bookstore",
"description": "Visit Arcade Books at 9 Theodore Fremd Ave, Rye, NY. Experience our floor-to-ceiling book collection today.",
"siteName": "Arcade Books",
"type": "website"
},
};
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
});
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${mulish.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}