diff options
| author | Yuval Adam <_@yuv.al> | 2025-05-22 13:00:55 +0200 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-05-22 13:00:55 +0200 |
| commit | 69cc1db574e319c77d5ae049979a6b35518b26fe (patch) | |
| tree | 3ffa4cd7a8d6f09d3a97addfe2c5e20468801ed3 /src/layouts/Layout.astro | |
| parent | 65276a312f20cbcbab07201c5a07c547540652ed (diff) | |
Add subnet guide, layout, nav and embed
Diffstat (limited to 'src/layouts/Layout.astro')
| -rw-r--r-- | src/layouts/Layout.astro | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index e85cfd3..a7f2b7b 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -1,6 +1,6 @@ --- import "../styles/global.css"; - +import Navigation from "../components/Navigation"; import { GOOGLE_ANALYTICS_ID } from "../config"; export interface Props { @@ -99,11 +99,14 @@ const { </script> <slot name="head" /> + + </head> <body> <div class="min-h-screen flex flex-col items-center justify-center bg-gradient-to-br from-blue-50 to-indigo-100 p-2" > + <Navigation client:load /> <div class="max-w-6xl w-full sm:p-8 p-2 min-h-[800px]"> <slot /> </div> @@ -115,9 +118,6 @@ const { >, operated by <a href="https://magicmonad.com" class="text-blue-600 hover:underline">Magic Monad</a - >. Open source available on <a - href="https://github.com/yuvadm/cidr.xyz" - class="text-blue-600 hover:underline">Github</a >. </p> </footer> |
