mirror of
https://github.com/xHyroM/links.git
synced 2024-11-10 02:28:06 +01:00
feat(pages): index background styling
This commit is contained in:
parent
2d9af3cae8
commit
3c09db22e6
5 changed files with 12 additions and 3 deletions
0
src/components/Item.astro
Normal file
0
src/components/Item.astro
Normal file
0
src/components/Picture.astro
Normal file
0
src/components/Picture.astro
Normal file
0
src/components/Username.astro
Normal file
0
src/components/Username.astro
Normal 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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue