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("profile") const about = t('about') const desc = t('desc') const school = t('school') const link = t('link') 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') return (
{ // Heading }

{about}

{ // Description }

{desc}

{school}

{location}

{ // Links }

{link}

Twitter: @yudejp

Discord: yude#3205

{mail}: i@yude.jp

GitHub: yudejp

Keybase: yude

Instagram: yude.jp

{link_all}{here}{link_all_late}

) }