Astro-based site with 40+ interactive math games, puzzles, and explorations. Includes admin dashboard, todo system, blog, theme/subcategory navigation, and embed pages for iframe embedding. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
23 lines
613 B
Text
23 lines
613 B
Text
---
|
|
import BaseHead from "@/components/BaseHead.astro";
|
|
import Banner from "@/components/sections/banner";
|
|
import { Footer } from "@/components/sections/footer";
|
|
import Navbar from "@/components/sections/navbar";
|
|
|
|
const { title, description } = Astro.props;
|
|
---
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<BaseHead title={title} description={description} />
|
|
</head>
|
|
<body class="flex min-h-screen flex-col antialiased">
|
|
<Banner
|
|
client:load
|
|
url="https://www.shadcnblocks.com/template/hatch"
|
|
/>
|
|
<Navbar client:load />
|
|
<main class="w-full flex-1"><slot /></main>
|
|
<Footer />
|
|
</body>
|
|
</html>
|