Remove Docker config and fix inline scripts

This commit is contained in:
Bad Manners 2024-03-20 15:01:42 -03:00
parent 324050ee38
commit aba96f95a2
12 changed files with 79 additions and 84 deletions

View file

@ -1,13 +1,13 @@
---
import { Image } from "astro:assets";
import BaseLayout from "./BaseLayout.astro";
import AgeRestrictedBaseLayout from "./AgeRestrictedBaseLayout.astro";
import Navigation from "../components/Navigation.astro";
import logoBM from "../assets/images/logo_bm.png";
const { pageTitle } = Astro.props;
---
<BaseLayout pageTitle={pageTitle}>
<AgeRestrictedBaseLayout pageTitle={pageTitle}>
<div
class="flex min-h-screen flex-col bg-stone-200 text-stone-800 md:flex-row dark:bg-stone-800 dark:text-stone-200 print:bg-none"
>
@ -59,4 +59,4 @@ const { pageTitle } = Astro.props;
<slot />
</main>
</div>
</BaseLayout>
</AgeRestrictedBaseLayout>