first deploy with astro

This commit is contained in:
2025-03-11 20:57:48 -03:00
parent 772cc74550
commit ac4d429eca
21 changed files with 6094 additions and 13 deletions

View File

@@ -0,0 +1,14 @@
---
import "../styles/global.css";
import Welcome from "../components/Welcome.astro";
import { Regular as Logo } 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
// Don't want to use any of this? Delete everything in this file, the `assets`, `components`, and `layouts` directories, and start fresh.
---
<Layout>
<Logo className="w-36" />
<Welcome />
</Layout>