summaryrefslogtreecommitdiff
path: root/src/pages/index.astro
blob: 96dfa0c3516ae3582ded5f91e45efd8bc4a930c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
import { Geshem } from "../components/Geshem";
import "../styles/global.css";

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

<html lang="en">
	<head>
		<meta charset="utf-8" />
		<link rel="icon" type="image/png" href="/favicon.png" />
		<meta name="viewport" content="width=device-width" />
		<title>Geshem - Rain Radar</title>
		<meta name="description" content="Israel Rain Radar" />
		<script
			src="https://cdn.usefathom.com/script.js"
			data-site="MBXPLVRM"
			defer></script>
	</head>
	<body>
		<Geshem client:load date={date} />
	</body>
</html>