feat: add github login

This commit is contained in:
2024-10-01 20:30:55 +08:00
parent 7d4e6bd299
commit 6528ee78c6
11 changed files with 213 additions and 25 deletions

View File

@@ -1,14 +1,5 @@
import { Outlet } from 'react-router';
import { LayoutMain } from '@/modules/layout';
export const Main = () => {
return (
<div className='flex w-full h-full flex-col bg-gray-200'>
<div className='layout-menu'>Agent</div>
<div className='flex-grow w-full'>
<div className='w-full h-full overflow-hidden'>
<Outlet />
</div>
</div>
</div>
);
return <LayoutMain title='Agent' />;
};