interactives/src/layouts/DefaultLayout.astro
Neeldhara Misra c5926b4213 Initial commit: Interactives site
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>
2026-04-17 03:09:40 +05:30

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>