summaryrefslogtreecommitdiff
path: root/src/pages/index.astro
blob: 5b08f1863433885ca6cbc72a43019e363b9d05b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
---
import Layout from "../layouts/Layout.astro";
import { Geshem } from "../components/Geshem";
import "../styles/global.css";

const { date } = Astro.params;
---

<Layout>
	<Geshem client:load date={date} />
</Layout>