mirror of
https://github.com/yude-jp/yude.jp
synced 2024-12-22 20:20:09 +09:00
28 lines
1.1 KiB
JavaScript
28 lines
1.1 KiB
JavaScript
import Layout from "./components/Layout"
|
|
import Navbar from "./components/Navbar"
|
|
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, faKey, faDownload, faEye } 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("house")
|
|
const house = t('house')
|
|
|
|
return (
|
|
|
|
<Layout title={house}>
|
|
<Navbar />
|
|
<p className="my-2 text-3xl">{house}</p>
|
|
<div className="mx-9">
|
|
<iframe className="w-full h-96" src="https://mackerel.io/embed/public/embed/4mVIU29WCRVZgHUxQPzWsfXo953uxiAegbjDb83hTQ7szesCunwdpVkBIzhnLc9i?period=1d" frameborder="0" scrolling="no"></iframe>
|
|
</div>
|
|
</Layout>
|
|
)
|
|
} |