summaryrefslogtreecommitdiff
path: root/src/pages/index.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/index.astro')
-rw-r--r--src/pages/index.astro11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro
index 2d14107..fb90246 100644
--- a/src/pages/index.astro
+++ b/src/pages/index.astro
@@ -1,16 +1,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/svg+xml" href="/favicon.svg" />
+ <link rel="icon" type="image/png" href="/favicon.png" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
- <title>Astro</title>
+ <title>Geshem - Rain Radar</title>
+ <meta name="description" content="Israel Rain Radar" />
</head>
<body>
- <h1>Astro</h1>
+ <Geshem client:load date={date} />
</body>
</html>