From a1605c89707aa2be1e9f5c98a806b0f816917155 Mon Sep 17 00:00:00 2001 From: yudejp Date: Sun, 30 May 2021 13:39:48 +0900 Subject: [PATCH] Add button for Dynmap --- pages/minecraft.js | 47 ++++++++++++++++++++++++++++++---------------- 1 file changed, 31 insertions(+), 16 deletions(-) diff --git a/pages/minecraft.js b/pages/minecraft.js index 357aeb9..c277511 100644 --- a/pages/minecraft.js +++ b/pages/minecraft.js @@ -4,6 +4,9 @@ import useTranslation from 'next-translate/useTranslation' import { useRouter } from 'next/router' import Minecraft from './components/Minecraft' import Image from 'next/image' +import { faMap } from '@fortawesome/free-solid-svg-icons' +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' +import Link from 'next/link' export default function About(props) { const router = useRouter() @@ -12,21 +15,33 @@ export default function About(props) { const title = t('title') const address = t('address') return ( - -
-

{title}

-
- Dynmap Header -
- -

{address}: yude.jp

-
-
+ +
+

{title}

+
+ Dynmap Header +
+
+ +

{address}: yude.jp

+ + + + + +
+
+
) } \ No newline at end of file