mirror of
https://github.com/Damillora/Rinze.git
synced 2024-10-31 19:37:32 +00:00
16 lines
381 B
Svelte
16 lines
381 B
Svelte
|
<script>
|
||
|
import PageHeader from "components/PageHeader.svelte";
|
||
|
</script>
|
||
|
|
||
|
<svelte:head>
|
||
|
<title>Damillora: Game Profile</title>
|
||
|
</svelte:head>
|
||
|
|
||
|
<div class="page">
|
||
|
<PageHeader>
|
||
|
<h1 class="title">Game Profile: Fate/Grand Order (JP)</h1>
|
||
|
<p><a href="https://www.fate-go.jp">Game Website</a></p>
|
||
|
</PageHeader>
|
||
|
<main class="container main" />
|
||
|
</div>
|