import Layout from "./components/Layout" import useTranslation from 'next-translate/useTranslation' import { faDiscord, faTwitter, faGithub, faKeybase, faInstagram, faMastodon, faSteam } from '@fortawesome/free-brands-svg-icons' import { faEnvelope, faBirthdayCake, faMapPin, faSchool, faPhone, faInfo, faLink, faMobile } from '@fortawesome/free-solid-svg-icons' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import Link from 'next/link' import Image from 'next/image' import DiscordStatus from './components/DiscordStatus' import { useRouter } from 'next/router' import DiscordPlaying from './components/DiscordPlaying' import Spotify from './components/Spotify' import WakaTime from './components/WakaTime' import PublicKeys from './components/PublicKeys' export default function About(props) { const router = useRouter() const { locale, locales, defaultLocale, pathname } = router const { t, lang } = useTranslation("profile") const about = t('about') const desc = t('desc') const school = t('school') const contact = t('contact') const location = t('location') const belongs = t('belongs') const hiroshima = t('hiroshima') const birth = t('birth') const date = t('date') const more = t('more') const grade = t('grade') const icon_1 = t('icon_1') const icon_2 = t('icon_2') const account = t('account') const device = t('device') return (
{ // Heading }
yude's avatar

yude

{ // Description }

{desc}

{belongs}

{school}

{grade}

{birth}

{date}

{location}

{hiroshima}

{ // Contact }

{contact}

@yude_jp

yude#3205

i@yude.jp

yude

@yude@mstdn.yude.jp

yude

yude.jp

id/yudejp

{ // Buttons }

{icon_1}Minkasy {icon_2}

) }