blob: a1b25e971488e7bc0e5ef9ef67f37c6fa24c3c94 (
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
26
27
28
29
30
31
32
33
34
|
---
import Layout from "../layouts/Layout.astro";
import Profile from "../components/Profile.astro";
import List from "../components/List.astro";
import Footer from "../components/Footer.astro";
import FooterImage from "../assets/603.gif";
---
<Layout title="Moekyun Web Services">
<main class="container" id="container">
<Profile />
<List />
<div style="display: flex; justify-content: center; margin-top: 20px">
<img src={FooterImage.src} width="150px" alt="rosemi gif" />
</div>
<Footer />
</main>
</Layout>
<style>
.container {
position: relative;
margin: auto;
justify-content: space-between;
padding: 0.3125rem;
max-width: 600px;
width: 90%;
height: 100vh;
overflow: visible;
scrollbar-width: 8px;
scrollbar-color: var(--zinc-900) var(--zinc-950);
}
</style>
|