Rinze/src/routes/projects/altessimo.svelte

41 lines
1.2 KiB
Svelte

<script>
import PageHeader from 'components/PageHeader.svelte';
import GalleryImage from 'components/GalleryImage.svelte';
</script>
<svelte:head>
<title>Damillora: Altessimo</title>
</svelte:head>
<div class="page">
<PageHeader>
<h1>Altessimo</h1>
<p>
<a href="https://altessimo.nanao.moe">live</a>
&bull;
<a href="https://github.com/Damillora/Altessimo">source code</a>
</p>
</PageHeader>
<main class="container mx-auto main">
<h2>Description</h2>
<p>
Altessimo is a web application I built to catalogue and put in context Idolmaster lyricists, composers, and arrangers.
</p>
<p>
The database itself is definitely still a work-in-progress.
</p>
<h2>Technologies</h2>
<ul>
<li>Django</li>
<li>Bootstrap</li>
</ul>
<h2>Screenshots</h2>
<div class="gallery">
<GalleryImage src="/images/projects/altessimo/1.png" />
<GalleryImage src="/images/projects/altessimo/2.png" />
<GalleryImage src="/images/projects/altessimo/3.png" />
<GalleryImage src="/images/projects/altessimo/4.png" />
</div>
</main>
</div>