Rinze/src/routes/games/counterside.svelte

32 lines
999 B
Svelte

<script>
import PageHeader from '@damillora/plachta/components/PageHeader/PageHeader.svelte';
import Container from '@damillora/plachta/components/Container/Container.svelte';
import Post from '@damillora/plachta/components/PageTypes/Post.svelte';
import PostMain from '@damillora/plachta/components/Post/PostMain.svelte';
</script>
<svelte:head>
<title>Damillora: Game Profile</title>
</svelte:head>
<Container>
<Post>
<PageHeader>
<h1>Game Profile: Counter:Side</h1>
<p>
<a href="https://counterside.zlongame.com/">Game Website</a>
</p>
</PageHeader>
<PostMain comments={false}>
<h2>My Review</h2>
<blockquote>
In conclusion, Counter:Side is a pretty fun game to play, if that's your thing. This is not
in a genre that I usually play nor it's something that I feel emotionally invested in, but I
think it's worth a try.
</blockquote>
<p><a href="//blog.nanao.moe/game-reviews/counter-side/">Read more</a></p>
</PostMain>
</Post>
</Container>