2021-12-11 18:07:22 +09:00
|
|
|
// Base layout
|
2021-05-18 22:42:47 +09:00
|
|
|
import Layout from "./components/Layout"
|
2021-12-11 18:07:22 +09:00
|
|
|
|
|
|
|
// i18n
|
|
|
|
import { useTranslation, useLanguageQuery, LanguageSwitcher } from 'next-export-i18n';
|
|
|
|
|
|
|
|
// Next.js router
|
2021-05-18 22:42:47 +09:00
|
|
|
import { useRouter } from 'next/router'
|
|
|
|
|
|
|
|
export default function About(props) {
|
2021-12-11 18:55:57 +09:00
|
|
|
const { t } = useTranslation();
|
|
|
|
const [query] = useLanguageQuery();
|
|
|
|
|
2021-05-18 22:42:47 +09:00
|
|
|
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>
|
|
|
|
)
|
|
|
|
}
|