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