- Rename app title and header from "Six Flags Calendar" to "Thoosie Calendar" - Update layout metadata title and description - Update README title - Add app/icon.svg favicon: amber T on dark background, picked up automatically by Next.js App Router Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
16 lines
373 B
TypeScript
16 lines
373 B
TypeScript
import type { Metadata } from "next";
|
|
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}</body>
|
|
</html>
|
|
);
|
|
}
|