Files
d754f11e-b6bb-4732-a944-90a…/src/app/layout.tsx
2026-06-05 12:50:10 +00:00

77 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";
import { Libre_Baskerville } from "next/font/google";
export const metadata: Metadata = {
title: 'Rehla Coffee House | Crafted Coffee. Cozy Moments.',
description: 'Experience the best coffee in Royal Oak, MI. Rehla Coffee House offers a cozy, aesthetic, and study-friendly space with premium crafted beverages and delightful desserts.',
keywords: ["Rehla Coffee House, coffee shop Royal Oak MI, specialty coffee, cafe, cozy cafe, aesthetic coffee, coffee near me, pistachio latte, pastries, study cafe, remote work cafe"],
openGraph: {
"title": "Rehla Coffee House | Crafted Coffee. Cozy Moments.",
"description": "Your daily escape for premium brews and delightful bites in Royal Oak, MI.",
"url": "https://www.rehlacoffee.com",
"siteName": "Rehla Coffee House",
"images": [
{
"url": "http://img.b2bpic.net/free-photo/warm-cup-tea-rainy-afternoon-steam-rising-soft-golden-light-that-filters-through-rainstreaked-windows_73899-27535.jpg",
"alt": "Aesthetic cafe interior"
}
],
"type": "website"
},
twitter: {
"card": "summary_large_image",
"title": "Rehla Coffee House | Crafted Coffee. Cozy Moments.",
"description": "Your daily escape for premium brews and delightful bites in Royal Oak, MI.",
"images": [
"http://img.b2bpic.net/free-photo/warm-cup-tea-rainy-afternoon-steam-rising-soft-golden-light-that-filters-through-rainstreaked-windows_73899-27535.jpg"
]
},
robots: {
"index": true,
"follow": true
},
};
const libreBaskerville = Libre_Baskerville({
variable: "--font-libre-baskerville",
subsets: ["latin"],
weight: ["400", "700"],
});
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={`${libreBaskerville.variable} ${inter.variable} antialiased`}>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}