blob: 088597a745f435f39f9890058ac36e014e4b6ed2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
---
import Layout from '../layouts/Layout.astro';
import Profile from '../components/Profile.astro';
import List from '../components/List.astro';
import Shadow from '../components/Shadow.astro'
---
<Layout title="Welcome to Astro.">
<main class="container">
<Profile></Profile>
<List></List>
<Shadow></Shadow>
</main>
</Layout>
<style>
.container {
position: relative;
margin: auto;
max-width: 600px;
width: 90%;
height: 100vh;
overflow: hidden;
}
</style>
|