feat: add Home page with Logout button

This commit is contained in:
Maximilian Liebmann 2025-04-19 22:15:27 +02:00 committed by SomeCodecat
parent 8a627983df
commit 9987eb651b

10
src/app/home/page.tsx Normal file
View file

@ -0,0 +1,10 @@
import { Logout } from '@/components/user/logout-button';
export default function Home() {
return (
<div>
<h1>Home</h1>
<Logout />
</div>
);
}