diff options
| author | Yuval Adam <_@yuv.al> | 2025-09-24 09:12:44 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-09-24 09:12:44 +0200 |
| commit | 4c5be8cf8d942743398581b46ac2c76d0ff273d8 (patch) | |
| tree | b182383a63302f24910c5534953d3624cb24f00d /src/pages/index.astro | |
| parent | 490214f0a9be03130cf535bc5ae0b8aa3c6c16db (diff) | |
Initial migration
Diffstat (limited to 'src/pages/index.astro')
| -rw-r--r-- | src/pages/index.astro | 11 |
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> |
