summaryrefslogtreecommitdiff
path: root/src/pages/index.astro
blob: fb902463788592ed262051231b6771e84fc6d3f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
import { Geshem } from '../components/Geshem';
import '../styles/global.css';
import '../styles/geshem.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" />
		<meta name="generator" content={Astro.generator} />
		<title>Geshem - Rain Radar</title>
		<meta name="description" content="Israel Rain Radar" />
	</head>
	<body>
		<Geshem client:load date={date} />
	</body>
</html>