feat: Add /colors-page
Some checks are pending
Deploy website / build-and-deploy (push) Waiting to run
Some checks are pending
Deploy website / build-and-deploy (push) Waiting to run
Might need some rework with json-data, but a quick addition so far. Signed-off-by: SindreKjelsrud <sindre@kjelsrud.dev>
This commit is contained in:
parent
458a079912
commit
5259d1f126
2 changed files with 21 additions and 0 deletions
18
src/pages/colors.astro
Normal file
18
src/pages/colors.astro
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
import SectionContainer from "../components/SectionContainer.astro";
|
||||
import appearances from "../data/appearances.json";
|
||||
---
|
||||
|
||||
<SectionContainer title="appearances" description="where i’ve shared insights or participated">
|
||||
<main class="flex flex-col flex-1 gap-2 mt-4">
|
||||
<h1 class="text-3xl font-extrabold">[ colors i like ]</h1>
|
||||
<ul class="blog">
|
||||
<li>
|
||||
<svg width="20" height="20" style="display: inline; justify-content: center; align-items: center;">
|
||||
<rect width="20" height="20" style="fill:#ffffa6;stroke-width:3;stroke:rgb(0,0,0)" />
|
||||
</svg>
|
||||
Pastel Yellow - <code>#ffffa6</code>
|
||||
</li>
|
||||
</ul>
|
||||
</main>
|
||||
</SectionContainer>
|
||||
Loading…
Add table
Add a link
Reference in a new issue