added standard ui

This commit is contained in:
Patrick Alvin Alcala 2025-06-03 15:53:17 +08:00
parent 39b0628d4c
commit 81389dedd9
2 changed files with 44 additions and 2 deletions

View file

@ -1,9 +1,21 @@
---
import Layout from '../layouts/Layout.astro'
import Button from '../components/ButtonComponent/Button.tsx'
---
<Layout title="Home">
<main>
<h1>This is just a template</h1>
<main class="page">
<h1>Main Page</h1>
<Button label="Next Page" to="/next" />
</main>
</Layout>
<style lang="sass">
.page
display: flex
flex-direction: column
text-align: center
justify-content: center
align-items: center
margin: 2rem
</style>