Rinze/src/routes/links.svelte

24 lines
641 B
Svelte
Raw Normal View History

2021-01-24 18:21:43 +00:00
<script>
2022-07-24 16:25:35 +00:00
import Hero from '@damillora/plachta/components/Hero/Hero.svelte';
import Container from '@damillora/plachta/components/Container/Container.svelte';
import MediaItem from '$lib/components/MediaItem.svelte';
2021-01-24 18:21:43 +00:00
</script>
<svelte:head>
2022-07-24 16:25:35 +00:00
<title>Damillora: Links</title>
2021-01-24 18:21:43 +00:00
</svelte:head>
2022-07-24 16:25:35 +00:00
<Container>
<h1>Links</h1>
<p>Here, I post links that is of my interest, and might be for you too!</p>
<h2>Personal Links</h2>
<div class="card-list">
<MediaItem
title="Damillora's Favorite Music Playlist"
link="/favmusiclist"
description="This playlist contains some of the music I listen to frequently."
/>
</div>
</Container>