0
0
mirror of https://github.com/yude-jp/yude.jp synced 2024-06-09 23:36:01 +09:00
yude.jp/pages/minecraft.js

62 lines
2.5 KiB
JavaScript
Raw Normal View History

2021-05-30 12:55:44 +09:00
import React, { useState, useEffect } from 'react';
import Layout from "./components/Layout"
import useTranslation from 'next-translate/useTranslation'
import { useRouter } from 'next/router'
import Minecraft from './components/Minecraft'
import Image from 'next/image'
2021-05-31 10:09:14 +09:00
import { faMap, faCopy } from '@fortawesome/free-solid-svg-icons'
2021-05-30 13:39:48 +09:00
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import Link from 'next/link'
2021-05-30 12:55:44 +09:00
export default function About(props) {
const router = useRouter()
const { locale, locales, defaultLocale, pathname } = router
const { t, lang } = useTranslation("minecraft")
const title = t('title')
2021-05-30 13:31:17 +09:00
const address = t('address')
2021-05-31 10:06:04 +09:00
const version = t('version')
2021-05-31 10:09:14 +09:00
const copyText = () => {
navigator.clipboard.writeText("yude.jp");
};
2021-05-31 10:06:04 +09:00
2021-05-30 12:55:44 +09:00
return (
2021-05-30 13:39:48 +09:00
<Layout title={title}>
<div>
<p className="my-2 text-3xl text-center">{title}</p>
<div className="w-full">
<Image
src = "/static/images/dynmap.png"
alt = "Dynmap Header"
unoptimized = {true}
width = {1354}
height = {619}
/>
</div>
<div className="text-center">
<Minecraft />
2021-05-31 10:09:14 +09:00
<p>
<span>{address}: <code>yude.jp</code></span>
<button
className="bg-pink-600 text-white active:bg-pink-600 font-bold text-sm px-2 py-2 ml-2 rounded shadow hover:shadow-lg outline-none focus:outline-none mr-1 mb-1 ease-linear transition-all duration-150"
type="button"
onClick={() => copyText()}
>
<FontAwesomeIcon icon={faCopy} className="w-5 h-5 inline"/>
</button>
</p>
2021-06-11 16:08:47 +09:00
<p>{version}: 1.17</p>
2021-05-30 13:39:48 +09:00
<Link href="https://dynmap.yude.jp">
<a>
<button
2021-05-31 10:10:09 +09:00
className="bg-pink-600 text-white active:bg-pink-600 mt-3 font-bold text-sm px-6 py-3 rounded shadow hover:shadow-lg outline-none focus:outline-none mr-1 mb-1 ease-linear transition-all duration-150"
2021-05-30 13:39:48 +09:00
type="button"
>
<FontAwesomeIcon icon={faMap} className="w-5 h-5 inline"/> Dynmap
</button>
</a>
</Link>
</div>
</div>
</Layout>
2021-05-30 12:55:44 +09:00
)
}