feat: wrap some pages in index first

This commit is contained in:
Damillora 2022-07-25 01:26:04 +07:00
parent 501d19607d
commit b7f880f4c1
6 changed files with 357 additions and 343 deletions

View File

@ -1,5 +1,6 @@
<script> <script>
import Container from '@damillora/plachta/components/Container/Container.svelte'; import Container from '@damillora/plachta/components/Container/Container.svelte';
import Index from '@damillora/plachta/components/PageTypes/Index.svelte';
</script> </script>
<svelte:head> <svelte:head>
@ -7,6 +8,7 @@
</svelte:head> </svelte:head>
<Container> <Container>
<Index>
<h1 class="page-header__heading">About Damillora</h1> <h1 class="page-header__heading">About Damillora</h1>
<p> <p>
Hello! My name is Damillora. I'm an indie Virtual YouTuber with a focus on technology, games, Hello! My name is Damillora. I'm an indie Virtual YouTuber with a focus on technology, games,
@ -19,8 +21,8 @@
</ul> </ul>
<h2>Credits</h2> <h2>Credits</h2>
<p> <p>
I am thankful to several for bringing my Virtual YouTuber project to life, and I will list them I am thankful to several for bringing my Virtual YouTuber project to life, and I will list
here. them here.
</p> </p>
<h3>Illustrator: Mira Cassiela</h3> <h3>Illustrator: Mira Cassiela</h3>
<p>Virtual artist | L2D artist + freelance character designer and illustrator</p> <p>Virtual artist | L2D artist + freelance character designer and illustrator</p>
@ -70,8 +72,8 @@
I maintain presence in several altenative platforms and technologies to ensure I have control of I maintain presence in several altenative platforms and technologies to ensure I have control of
data I post, to contribute to a possible future, and as a backup when mainstream platforms go down. data I post, to contribute to a possible future, and as a backup when mainstream platforms go down.
<br /> <br />
If you have a presence in those platforms, I encourage you to use these instead, you will help the If you have a presence in those platforms, I encourage you to use these instead, you will help
adoption of those technologies! the adoption of those technologies!
</p> </p>
<ul> <ul>
<li> <li>
@ -102,4 +104,5 @@
<img src="/images/meishi/front-shianv2.png" alt="Meishi front" /> <img src="/images/meishi/front-shianv2.png" alt="Meishi front" />
<img src="/images/meishi/back-shianv2.png" alt="Meishi back" /> <img src="/images/meishi/back-shianv2.png" alt="Meishi back" />
</div> </div>
</Index>
</Container> </Container>

View File

@ -1,6 +1,7 @@
<script> <script>
import Hero from '@damillora/plachta/components/Hero/Hero.svelte'; import Hero from '@damillora/plachta/components/Hero/Hero.svelte';
import Container from '@damillora/plachta/components/Container/Container.svelte'; import Container from '@damillora/plachta/components/Container/Container.svelte';
import Index from '@damillora/plachta/components/PageTypes/Index.svelte';
</script> </script>
<svelte:head> <svelte:head>
@ -8,6 +9,7 @@
</svelte:head> </svelte:head>
<Container> <Container>
<Index>
<h1>Contact</h1> <h1>Contact</h1>
<p>You can contact me via various channels.</p> <p>You can contact me via various channels.</p>
<h2>Email: damillora(at)damillora.com</h2> <h2>Email: damillora(at)damillora.com</h2>
@ -17,7 +19,8 @@
</p> </p>
<h2>Twitter: <a href="https://twitter.com/Damillora">Damillora</a></h2> <h2>Twitter: <a href="https://twitter.com/Damillora">Damillora</a></h2>
<p> <p>
If you're a VTuber and want to collaborate, please send me a Direct Message my way via Twitter! If you're a VTuber and want to collaborate, please send me a Direct Message my way via
I will gladly help set up the things needed. Twitter! I will gladly help set up the things needed.
</p> </p>
</Index>
</Container> </Container>

View File

@ -1,6 +1,7 @@
<script> <script>
import Container from '@damillora/plachta/components/Container/Container.svelte'; import Container from '@damillora/plachta/components/Container/Container.svelte';
import GameListItem from '$lib/components/GameListItem.svelte'; import GameListItem from '$lib/components/GameListItem.svelte';
import Index from '@damillora/plachta/components/PageTypes/Index.svelte';
</script> </script>
<svelte:head> <svelte:head>
@ -8,6 +9,7 @@
</svelte:head> </svelte:head>
<Container> <Container>
<Index>
<h1>Game Profile</h1> <h1>Game Profile</h1>
<p> <p>
@ -186,4 +188,5 @@
/> />
--> -->
</div> </div>
</Index>
</Container> </Container>

View File

@ -1,6 +1,7 @@
<script> <script>
import Hero from '@damillora/plachta/components/Hero/Hero.svelte'; import Hero from '@damillora/plachta/components/Hero/Hero.svelte';
import Container from '@damillora/plachta/components/Container/Container.svelte'; import Container from '@damillora/plachta/components/Container/Container.svelte';
import Index from '@damillora/plachta/components/PageTypes/Index.svelte';
</script> </script>
<svelte:head> <svelte:head>
@ -8,6 +9,7 @@
</svelte:head> </svelte:head>
<Container> <Container>
<Index>
<h1>Welcome to Damillora's website</h1> <h1>Welcome to Damillora's website</h1>
<p> <p>
Welcome to the official website of indie Virtual YouTuber and technology enthusiast Damillora! Welcome to the official website of indie Virtual YouTuber and technology enthusiast Damillora!
@ -23,8 +25,9 @@
> >
</h2> </h2>
<p> <p>
The Damillora Network is the official place for my fans to interact, and a place for enthusiast The Damillora Network is the official place for my fans to interact, and a place for
to gather and discuss about various topics! enthusiast to gather and discuss about various topics!
</p> </p>
<p>The Network is reachable via Discord and Matrix.</p> <p>The Network is reachable via Discord and Matrix.</p>
</Index>
</Container> </Container>

View File

@ -1,6 +1,7 @@
<script> <script>
import Hero from '@damillora/plachta/components/Hero/Hero.svelte'; import Hero from '@damillora/plachta/components/Hero/Hero.svelte';
import Container from '@damillora/plachta/components/Container/Container.svelte'; import Container from '@damillora/plachta/components/Container/Container.svelte';
import Index from '@damillora/plachta/components/PageTypes/Index.svelte';
import MediaItem from '$lib/components/MediaItem.svelte'; import MediaItem from '$lib/components/MediaItem.svelte';
</script> </script>
@ -9,6 +10,7 @@
</svelte:head> </svelte:head>
<Container> <Container>
<Index>
<h1>Links</h1> <h1>Links</h1>
<p>Here, I post links that is of my interest, and might be for you too!</p> <p>Here, I post links that is of my interest, and might be for you too!</p>
@ -20,4 +22,5 @@
description="This playlist contains some of the music I listen to frequently." description="This playlist contains some of the music I listen to frequently."
/> />
</div> </div>
</Index>
</Container> </Container>

View File

@ -1,6 +1,7 @@
<script> <script>
import Container from '@damillora/plachta/components/Container/Container.svelte'; import Container from '@damillora/plachta/components/Container/Container.svelte';
import ProjectItem from '$lib/components/ProjectItem.svelte'; import ProjectItem from '$lib/components/ProjectItem.svelte';
import Index from '@damillora/plachta/components/PageTypes/Index.svelte';
</script> </script>
<svelte:head> <svelte:head>
@ -8,6 +9,7 @@
</svelte:head> </svelte:head>
<Container> <Container>
<Index>
<h1>Projects</h1> <h1>Projects</h1>
<p>This is a list of projects that I maintain and publicly available on my GitHub.</p> <p>This is a list of projects that I maintain and publicly available on my GitHub.</p>
@ -42,10 +44,7 @@
codename="miracle" codename="miracle"
description="Former codebase of nanao.moe" description="Former codebase of nanao.moe"
/> />
<ProjectItem <ProjectItem name="Yuika theme" codename="yuika" description="Previous theme for my blog" />
name="Yuika theme"
codename="yuika"
description="Previous theme for my blog"
/>
</div> </div>
</Index>
</Container> </Container>