2024-01-15 13:51:59 +09:00
|
|
|
<!--
|
2024-02-14 00:59:27 +09:00
|
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
2024-01-15 13:51:59 +09:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><MkPageHeader/></template>
|
|
|
|
<MkSpacer :contentMax="800">
|
2024-01-19 20:51:49 +09:00
|
|
|
<div class="_gaps">
|
|
|
|
<div class="_panel">
|
|
|
|
<MkA to="/bubble-game">
|
|
|
|
<img src="/client-assets/drop-and-fusion/logo.png" style="display: block; max-width: 100%; max-height: 200px; margin: auto;"/>
|
|
|
|
</MkA>
|
|
|
|
</div>
|
|
|
|
<div class="_panel">
|
|
|
|
<MkA to="/reversi">
|
|
|
|
<img src="/client-assets/reversi/logo.png" style="display: block; max-width: 100%; max-height: 200px; margin: auto;"/>
|
|
|
|
</MkA>
|
|
|
|
</div>
|
2024-01-15 13:51:59 +09:00
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
|
|
|
|
2024-02-16 16:17:09 +09:00
|
|
|
definePageMetadata(() => ({
|
2024-01-15 13:51:59 +09:00
|
|
|
title: 'Misskey Games',
|
2024-01-21 21:11:23 +09:00
|
|
|
icon: 'ph-game-controller ph-bold ph-lg',
|
2024-02-16 16:17:09 +09:00
|
|
|
}));
|
2024-01-15 13:51:59 +09:00
|
|
|
</script>
|