Don't use tabs in editor

This commit is contained in:
prototypa
2023-01-09 21:44:06 -05:00
parent 58484dfca8
commit f641767078
56 changed files with 2217 additions and 2203 deletions

View File

@ -7,17 +7,17 @@ import Announcement from '~/components/widgets/Announcement.astro';
import { MetaSEO } from '~/types';
export interface Props {
meta?: MetaSEO;
meta?: MetaSEO;
}
const { meta } = Astro.props;
---
<Layout {meta}>
<Announcement />
<Header />
<main>
<slot />
</main>
<Footer />
<Announcement />
<Header />
<main>
<slot />
</main>
<Footer />
</Layout>