51 lines
1.5 KiB
TypeScript
51 lines
1.5 KiB
TypeScript
|
|
import { redirect } from "next/navigation";
|
||
|
|
import { getSession } from "@/lib/auth-utils";
|
||
|
|
import { TwoFactorSetup } from "@/components/settings/two-factor-setup";
|
||
|
|
import { ActiveSessions } from "@/components/settings/active-sessions";
|
||
|
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
|
||
|
|
|
||
|
|
export default async function SecuritySettingsPage() {
|
||
|
|
const session = await getSession();
|
||
|
|
|
||
|
|
if (!session) {
|
||
|
|
redirect("/auth/sign-in");
|
||
|
|
}
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div className="container mx-auto py-8 px-4 max-w-2xl">
|
||
|
|
<div className="mb-8">
|
||
|
|
<h1 className="text-3xl font-bold">Security Settings</h1>
|
||
|
|
<p className="text-muted-foreground mt-2">
|
||
|
|
Manage your security preferences
|
||
|
|
</p>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div className="space-y-6">
|
||
|
|
<Card>
|
||
|
|
<CardHeader>
|
||
|
|
<CardTitle>Two-Factor Authentication</CardTitle>
|
||
|
|
<CardDescription>
|
||
|
|
Add an extra layer of security to your account
|
||
|
|
</CardDescription>
|
||
|
|
</CardHeader>
|
||
|
|
<CardContent>
|
||
|
|
<TwoFactorSetup />
|
||
|
|
</CardContent>
|
||
|
|
</Card>
|
||
|
|
|
||
|
|
<Card>
|
||
|
|
<CardHeader>
|
||
|
|
<CardTitle>Active Sessions</CardTitle>
|
||
|
|
<CardDescription>
|
||
|
|
Manage your active sessions across devices
|
||
|
|
</CardDescription>
|
||
|
|
</CardHeader>
|
||
|
|
<CardContent>
|
||
|
|
<ActiveSessions userId={session.user.id} />
|
||
|
|
</CardContent>
|
||
|
|
</Card>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|