0
0
mirror of https://github.com/yude-jp/yude.jp synced 2024-06-09 23:36:01 +09:00
yude.jp/pages/house.js

21 lines
669 B
JavaScript
Raw Normal View History

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';
const { t } = useTranslation();
const [query] = useLanguageQuery();
// Next.js router
2021-05-18 22:42:47 +09:00
import { useRouter } from 'next/router'
export default function About(props) {
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>
)
}