import Layout from "./components/Layout" import useTranslation from 'next-translate/useTranslation' import { useRouter } from 'next/router' export default function About(props) { const router = useRouter() const { locale, locales, defaultLocale, pathname } = router const { t, lang } = useTranslation("status") const status = t('status') const location = t('location') const tottori = t('tottori') const hiroshima = t('hiroshima') const model = t('model') return (
{ // Heading }

{status}

Powered / Generated by Mackerel.

{ // cherry Mackerel }

cherry

CPU

i7-2600

RAM

DDR3 24GB

OS

Arch Linux

{location}

{hiroshima}
{ // raspberry Mackerel }

raspberry

{model}

Raspberry Pi 4 Model B Rev 1.2

RAM

4GB

OS

Raspbian GNU/Linux 10 (buster)

{location}

{tottori}
) }