Replace direct SharedProfileSettings rendering with an expandable sidebar that shows Profile, Security, and Preferences as collapsible sub-items under Profile & Preferences. Matches the new settings pattern across all Ciphera frontends. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
15 lines
323 B
TypeScript
15 lines
323 B
TypeScript
import SettingsPageClient from './SettingsPageClient'
|
|
|
|
export const metadata = {
|
|
title: 'Settings - Pulse',
|
|
description: 'Manage your account settings',
|
|
}
|
|
|
|
export default function SettingsPage() {
|
|
return (
|
|
<div className="w-full max-w-6xl mx-auto px-4 sm:px-6 py-8">
|
|
<SettingsPageClient />
|
|
</div>
|
|
)
|
|
}
|