🚀(app-impress) create the base app impress

Create the base app impress, based on the
people app.
This commit is contained in:
Anthony LC
2024-04-02 12:12:04 +02:00
parent c64b66c797
commit 8fda0bc9b9
165 changed files with 8815 additions and 4 deletions

View File

@@ -0,0 +1,15 @@
import { ReactElement } from 'react';
import { Box } from '@/components';
import { MainLayout } from '@/core/';
import { NextPageWithLayout } from '@/types/next';
const Page: NextPageWithLayout = () => {
return <Box>Recent</Box>;
};
Page.getLayout = function getLayout(page: ReactElement) {
return <MainLayout>{page}</MainLayout>;
};
export default Page;