2021-12-11 14:04:05 +01:00
|
|
|
import Page from 'shared/components/wrappers/page.js'
|
|
|
|
import useApp from 'site/hooks/useApp.js'
|
2021-12-21 18:50:19 +01:00
|
|
|
import Logo from 'shared/components/logos/freesewing.js'
|
2021-12-10 09:56:19 +01:00
|
|
|
|
2021-12-11 14:04:05 +01:00
|
|
|
export default (props) => {
|
|
|
|
const app = useApp()
|
2021-12-10 09:56:19 +01:00
|
|
|
return (
|
2021-12-21 19:29:28 +01:00
|
|
|
<Page app={app} title='FIXME: Create homepage content'>
|
2021-12-11 14:04:05 +01:00
|
|
|
</Page>
|
2021-12-10 09:56:19 +01:00
|
|
|
)
|
|
|
|
}
|
2021-12-11 14:04:05 +01:00
|
|
|
|