import Layout from "./components/Layout" import Navbar from "./components/Navbar" import useTranslation from 'next-translate/useTranslation' import { faDiscord, faTwitter, faGithub, faKeybase, faInstagram } from '@fortawesome/free-brands-svg-icons' import { faEnvelope, faBirthdayCake, faMapPin, faSchool } from '@fortawesome/free-solid-svg-icons' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import Link from 'next/link' import Image from 'next/image' 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') return (
{ // Heading }

{status}

Powered / Generated by Datadog.

{ // cherry Datadog }

cherry

CPU

i7-2600

RAM

DDR3 16GB

OS

Ubuntu Server 20.04.2 LTS

{location}

{hiroshima}
{ // raspberry Datadog }

raspberry

Model

Raspberry Pi 4 Model B Rev 1.2

RAM

4GB

OS

Raspbian GNU/Linux 10 (buster)

{location}

{tottori}
) }