import type { Metadata } from "next"; import Script from "next/script"; import "./globals.css"; const PLAUSIBLE_SRC = process.env.NEXT_PUBLIC_PLAUSIBLE_SRC; const PLAUSIBLE_WEBSITE_ID = process.env.NEXT_PUBLIC_PLAUSIBLE_WEBSITE_ID; 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 ( {children} {PLAUSIBLE_SRC && PLAUSIBLE_WEBSITE_ID ? (