container

This commit is contained in:
2025-03-11 22:37:14 -03:00
parent ac4d429eca
commit 9ddd80adf1
3 changed files with 29 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
---
import "../styles/global.css";
import Welcome from "../components/Welcome.astro";
import { Regular as Logo } from "../components/Logo.jsx";
import { Regular } from "../components/Logo.jsx";
import Layout from "../layouts/Layout.astro";
// Welcome to Astro! Wondering what to do next? Check out the Astro documentation at https://docs.astro.build
@@ -9,6 +9,9 @@ import Layout from "../layouts/Layout.astro";
---
<Layout>
<Logo className="w-36" />
<div class="mt-5">
<Regular className="w-46" />
</div>
<Welcome />
</Layout>