8 lines
277 B
TypeScript
8 lines
277 B
TypeScript
export default function SecurityPage() {
|
|
return (
|
|
<div className="rounded-xl border border-white/10 bg-white/5 p-6">
|
|
<h2 className="text-lg font-semibold">Security</h2>
|
|
<p className="mt-2 text-sm text-zinc-400">Coming soon.</p>
|
|
</div>
|
|
);
|
|
} |