diff options
author | Valentin Popov <valentin@popov.link> | 2024-09-12 16:11:16 +0300 |
---|---|---|
committer | Valentin Popov <valentin@popov.link> | 2024-09-12 16:11:16 +0300 |
commit | 4ba339984d239180a526a5ae8ffbb558f1b5642a (patch) | |
tree | 4dbc5e555c995842e6eea7348f467ef778318b9d /src/layouts | |
parent | 70fa9c2033dce305db154103bccb41d8124d42d6 (diff) | |
download | popov.link-4ba339984d239180a526a5ae8ffbb558f1b5642a.tar.xz popov.link-4ba339984d239180a526a5ae8ffbb558f1b5642a.zip |
Updated the main page and page structures
Diffstat (limited to 'src/layouts')
-rw-r--r-- | src/layouts/BaseLayout.astro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro index af0d20e..54c9128 100644 --- a/src/layouts/BaseLayout.astro +++ b/src/layouts/BaseLayout.astro @@ -11,8 +11,8 @@ const { title, description } = Astro.props; <body> <Header /> - <article> + <main> <slot /> - </article> + </main> </body> </html> |