mirror of
https://github.com/xHyroM/links.git
synced 2024-11-22 07:31: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 />
|
<HeadCommon />
|
||||||
<HeadSEO />
|
<HeadSEO />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body class="bg-primaryDotted bg-primaryDottedSize font-alt3">
|
||||||
<slot />
|
<slot />
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,9 +1,18 @@
|
||||||
---
|
---
|
||||||
import Layout from '../layouts/Layout.astro';
|
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>
|
<Layout>
|
||||||
<main>
|
<main class="mx-auto w-max">
|
||||||
<h1>ad</h1>
|
<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>
|
</main>
|
||||||
</Layout>
|
</Layout>
|
||||||
|
|
Loading…
Reference in a new issue