2023-01-09 10:06:39 +01:00
|
|
|
import { ReactElement } from 'react';
|
2023-01-16 03:37:21 +01:00
|
|
|
import { Main } from '../components/layouts/Main/Main';
|
2022-04-26 08:10:07 +02:00
|
|
|
|
2020-11-08 00:32:51 +01:00
|
|
|
export default function Home() {
|
2022-05-26 05:38:40 +02:00
|
|
|
return <Main />;
|
2020-10-26 02:57:23 +01:00
|
|
|
}
|
2023-01-09 10:06:39 +01:00
|
|
|
Home.getLayout = function getLayout(page: ReactElement) {
|
|
|
|
return page;
|
|
|
|
};
|