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>
This commit is contained in:
commit
c5926b4213
265 changed files with 51899 additions and 0 deletions
23
src/layouts/DefaultLayout.astro
Normal file
23
src/layouts/DefaultLayout.astro
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
---
|
||||
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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue