diff options
| author | Yuval Adam <_@yuv.al> | 2025-09-24 10:44:16 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-09-24 10:44:16 +0200 |
| commit | d68de64bd8a2139e9fe53041411026ab174b02f3 (patch) | |
| tree | af550912e2adedcd9d4ea3b69d4c704bd6828e8d /src/pages/index.astro | |
| parent | fcdd0f7c28fd52efabc6af38b47d517d750b5acd (diff) | |
Extract layout
Diffstat (limited to 'src/pages/index.astro')
| -rw-r--r-- | src/pages/index.astro | 20 |
1 files changed, 4 insertions, 16 deletions
diff --git a/src/pages/index.astro b/src/pages/index.astro index 96dfa0c..5b08f18 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,23 +1,11 @@ --- +import Layout from "../layouts/Layout.astro"; 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> +<Layout> + <Geshem client:load date={date} /> +</Layout> |
