supermemory/apps/web/app/(navigation)/settings/page.tsx
MaheshtheDev b148296f50 feat: layout design with theme improvements (#443)
feat: layout design with theme improvements

new improvements on light mode layout

chore: settings page with graph header and memories list
2025-10-01 21:59:54 +00:00

12 lines
No EOL
276 B
TypeScript

"use client"
import { ProfileView } from "@/components/views/profile"
export default function ProfilePage() {
return (
<div className="py-6 max-w-xl">
<h1 className="text-2xl font-bold text-foreground mb-2">
Profile Settings
</h1>
<ProfileView />
</div>
)
}