martials.no/src/components/myLinks/LinksPage.astro
Martin Berg Alstad 023c8b7c85
Update general style
- Smaller width of page
- Center navbar
- Fonts
- Catppuccin Mocha colours
- TODO.md
- Show all uses at the same time
- and more...
2025-02-15 18:01:17 +01:00

14 lines
267 B
Plaintext

---
import links from "./myLinks"
import LinkCard from "./LinkCard.astro"
import "@/styles/global.css"
---
<div class="flex flex-col mx-auto w-fit gap-5">
{
links.map((link) => (
<LinkCard {...link} class="max-w-[500px] sm:min-w-96" />
))
}
</div>