feat: add settings page to analytics-frontend

This commit is contained in:
Usman Baig
2026-01-16 22:37:40 +01:00
parent 63921d5e04
commit e1cf7d4b13
6 changed files with 1343 additions and 0 deletions

14
app/settings/page.tsx Normal file
View File

@@ -0,0 +1,14 @@
import ProfileSettings from '@/components/settings/ProfileSettings'
export const metadata = {
title: 'Settings - Ciphera Analytics',
description: 'Manage your account settings',
}
export default function SettingsPage() {
return (
<div className="min-h-screen pt-12 pb-12 px-4 sm:px-6">
<ProfileSettings />
</div>
)
}