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, faPhone, faInfo } 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("profile") const about = t('about') const desc = t('desc') const school = t('school') const contact = t('contact') const link_all = t('link_all') const link_all_late = t('link_all_late') const location = t('location') const here = t('here') const mail = t('mail') const belongs = t('belongs') const hiroshima = t('hiroshima') const birth = t('birth') const date = t('date') const more = t('more') return (
{ // Heading }
yude's avatar

yude

{ // Description }

{desc}

{belongs}

{school}

{birth}

{date}

{location}

{hiroshima}

{ // Contact }

{contact} / SNS

yude#3205

i@yude.jp

yudejp

yude

yude.jp

) }