24 lines
616 B
TypeScript
24 lines
616 B
TypeScript
import type { Metadata } from "next";
|
|
import Script from "next/script";
|
|
import "./globals.css";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Thoosie Calendar",
|
|
description: "Theme park operating hours and live ride status at a glance",
|
|
};
|
|
|
|
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
|
return (
|
|
<html lang="en">
|
|
<body>
|
|
{children}
|
|
<Script
|
|
src="https://tracking.thewrightserver.net/script.js"
|
|
data-website-id="a0d0582a-9bd0-4c0d-8e3c-3e6fcc99ec9a"
|
|
strategy="afterInteractive"
|
|
/>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|