feat: add Tabs component with Radix UI integration

This commit is contained in:
Maximilian Liebmann 2025-05-11 01:43:00 +02:00
parent e3a53aa1ce
commit b795d6a66a
3 changed files with 92 additions and 0 deletions

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

@ -0,0 +1,10 @@
import { RedirectButton } from '@/components/user/redirect-button';
export default function Home() {
return (
<div>
<h1>Settings</h1>
<RedirectButton redirectUrl='/home' buttonText='Home' />
</div>
);
}