- Smaller width of page - Center navbar - Fonts - Catppuccin Mocha colours - TODO.md - Show all uses at the same time - and more...
14 lines
267 B
Plaintext
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>
|