33 lines
694 B
Text
33 lines
694 B
Text
---
|
|
import Layout from '../layouts/Layout.astro'
|
|
import Button from '../builtin-components/Button/Button.tsx'
|
|
import Image from '../builtin-components/Image/Image'
|
|
---
|
|
|
|
<Layout title="Home">
|
|
<main class="page">
|
|
<h1>Second Page</h1>
|
|
<Button label="Back to Home" to="/" />
|
|
|
|
<section class="image">
|
|
<Image src="sample.png" alt="Example Image" size={400} />
|
|
</section>
|
|
</main>
|
|
</Layout>
|
|
|
|
<style lang="sass">
|
|
.page
|
|
display: flex
|
|
flex-direction: column
|
|
text-align: center
|
|
justify-content: center
|
|
align-items: center
|
|
margin: 2rem
|
|
height: auto
|
|
|
|
.image
|
|
margin: 2rem 0 0 0
|
|
border-radius: 4px
|
|
max-width: 100%
|
|
height: auto
|
|
</style>
|