2021-05-18 22:42:47 +09:00
|
|
|
import Layout from "./components/Layout"
|
|
|
|
import useTranslation from 'next-translate/useTranslation'
|
|
|
|
import { useRouter } from 'next/router'
|
|
|
|
|
|
|
|
export default function About(props) {
|
|
|
|
const router = useRouter()
|
|
|
|
const { locale, locales, defaultLocale, pathname } = router
|
|
|
|
const { t, lang } = useTranslation("house")
|
|
|
|
|
|
|
|
return (
|
2021-06-14 12:36:18 +09:00
|
|
|
<Layout title={t('house')}>
|
2021-05-26 07:53:02 +09:00
|
|
|
<div>
|
2021-06-14 12:36:18 +09:00
|
|
|
<p className="my-2 text-3xl text-center">{t('house')}</p>
|
2021-09-22 07:19:34 +09:00
|
|
|
<iframe className="w-full h-96" src="https://mackerel.io/embed/public/embed/4mVIU29WCRVZgHUxQPzWsfXo953uxiAegbjDb83hTQ7szesCunwdpVkBIzhnLc9i?period=1d" frameBorder="0" scrolling="no"></iframe>
|
2021-05-18 22:42:47 +09:00
|
|
|
</div>
|
|
|
|
</Layout>
|
|
|
|
)
|
|
|
|
}
|