feat: restructure Home component layout and add ThemePicker
This commit is contained in:
parent
ce39729d74
commit
11204f0e34
1 changed files with 7 additions and 3 deletions
|
@ -1,10 +1,14 @@
|
|||
import { Logout } from '@/components/user/sso-logout-button';
|
||||
import { ThemePicker } from '@/components/user/theme-picker';
|
||||
|
||||
export default function Home() {
|
||||
return (
|
||||
<div className='flex flex-col items-center justify-center h-screen'>
|
||||
<div className='absolute top-4 right-4'>{<ThemePicker />}</div>
|
||||
<div>
|
||||
<h1>Home</h1>
|
||||
<Logout />
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue