Files
SixFlagsSuperCalendar/app/layout.tsx
T
josh c5dc01b6ff
Build and Deploy / Build & Push (push) Successful in 8m48s
adds unami
2026-04-23 21:00:34 -04:00

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>
);
}