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