feat(pages): index background styling

This commit is contained in:
OLIMINATOR 2023-01-06 21:31:15 +01:00
parent 2d9af3cae8
commit 3c09db22e6
5 changed files with 12 additions and 3 deletions

View file

View file

View file

View file

@ -9,7 +9,7 @@ import HeadSEO from '../components/HeadSEO.astro';
<HeadCommon />
<HeadSEO />
</head>
<body>
<body class="bg-primaryDotted bg-primaryDottedSize font-alt3">
<slot />
</body>
</html>

View file

@ -1,9 +1,18 @@
---
import Layout from '../layouts/Layout.astro';
import Picture from '../components/Picture.astro';
import Username from '../components/Username.astro';
import Item from '../components/Item.astro';
---
<Layout>
<main>
<h1>ad</h1>
<main class="mx-auto w-max">
<header class="mt-12 flex flex-col items-center">
<Picture />
<Username />
</header>
<section class="mt-6 flex w-80 flex-col gap-y-6">
<Item />
</section>
</main>
</Layout>