From fd6462e02d867bc51cdd8c38146a85dc350ad097 Mon Sep 17 00:00:00 2001 From: Maximilian Liebmann Date: Sun, 11 May 2025 13:31:12 +0200 Subject: [PATCH] feat: implement Settings page with tabs --- src/app/settings/page.tsx | 73 +++++++++++++++++++++++++++++++++++++-- 1 file changed, 71 insertions(+), 2 deletions(-) diff --git a/src/app/settings/page.tsx b/src/app/settings/page.tsx index 8d31232..a0a1d37 100644 --- a/src/app/settings/page.tsx +++ b/src/app/settings/page.tsx @@ -1,10 +1,79 @@ -import { RedirectButton } from '@/components/user/redirect-button'; +//import { RedirectButton } from '@/components/user/redirect-button'; +import { Button } from '@/components/ui/button'; +import { + Card, + CardContent, + CardDescription, + CardFooter, + CardHeader, + CardTitle, +} from '@/components/ui/card'; +import { Input } from '@/components/ui/input'; +import { Label } from '@/components/ui/label'; +import { Tabs, TabsContent, TabsList, TabsTrigger } from '@/components/ui/tabs'; -export default function Home() { +/*export default function Settings() { return (

Settings

); +}*/ + +export default function Settings() { + return ( +
+ + + General + Account + + + + + General + + Make changes to your account here. Click save when you are done. + + + +
+ + +
+
+ + +
+
+ + + +
+
+ + + + Account Settings + + + +
+ + +
+
+ + +
+
+ + + +
+
+
+
+ ); }