Rinze/src/routes/index.svelte

34 lines
992 B
Svelte
Raw Normal View History

2021-01-24 18:21:43 +00:00
<script>
2021-05-13 21:28:48 +00:00
import PageHeader from '$lib/components/PageHeader.svelte';
2021-01-24 18:21:43 +00:00
</script>
<svelte:head>
<title>Damillora</title>
</svelte:head>
<div class="page">
<PageHeader>
2021-04-22 13:35:13 +00:00
<h1 class="page-header__heading">Damillora</h1>
2021-05-13 21:28:48 +00:00
<p class="page-header__text">Technology enthusiast VTuber!</p>
2021-01-24 18:21:43 +00:00
</PageHeader>
2021-05-13 21:28:48 +00:00
<main class="container main">
<p>
Welcome to the official website of indie Virtual YouTuber and technology enthusiast Damillora!
</p>
<h2>Catch my debut!</h2>
<p>My debut date is currently set to <strong>July 17th, 2020</strong>.</p>
<h2>Channel trailer</h2>
<p>Coming soon...</p>
<h2>Join the Network</h2>
<p><strong>Under Construction</strong></p>
<p>
The Damillora Network will be simultaneously the official place for my fans to interact, and a
place for enthusiast to gather and discuss about various topics!
</p>
<p>
The Network will be reachable via Discord and Matrix. It will be open when I debuted as a
Virtual YouTuber.
</p>
</main>
2021-01-24 18:21:43 +00:00
</div>