2022-05-14 19:11:32 +02:00
|
|
|
import { serverSideTranslations } from 'next-i18next/serverSideTranslations'
|
2023-02-09 21:39:19 -06:00
|
|
|
import { PatternListPageTemplate } from 'site/page-templates/design-list.mjs'
|
2022-05-14 19:11:32 +02:00
|
|
|
|
2023-02-09 21:39:19 -06:00
|
|
|
const Page = () => <PatternListPageTemplate section="utilities" />
|
2022-05-14 19:11:32 +02:00
|
|
|
|
|
|
|
export default Page
|
|
|
|
|
|
|
|
export async function getStaticProps({ locale }) {
|
|
|
|
return {
|
|
|
|
props: {
|
|
|
|
...(await serverSideTranslations(locale)),
|
2022-09-25 00:12:24 -04:00
|
|
|
},
|
2022-05-14 19:11:32 +02:00
|
|
|
}
|
|
|
|
}
|