all repos — website @ 4005330e45e461c08f401e3258f8428644bc8a5e

Unnamed repository; edit this file 'description' to name the repository.

chore(LinkList): format
vi did:web:vt3e.cat
Mon, 11 May 2026 03:10:13 +0100
commit

4005330e45e461c08f401e3258f8428644bc8a5e

parent

5c0587f12383598659a0bff1a0c937d364838140

1 files changed, 3 insertions(+), 1 deletions(-)

jump to
M src/components/LinkList.astrosrc/components/LinkList.astro

@@ -9,7 +9,9 @@ ---

<ul> {links.map((link) => ( - <li><a class="link" href={link.href}>{link.title}</a></li> + <li> + <a class="link" href={link.href}>{link.title}</a> + </li> ))} </ul>