mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-07 08:26:15 +00:00
feat: layout design with theme improvements new improvements on light mode layout chore: settings page with graph header and memories list
12 lines
No EOL
276 B
TypeScript
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>
|
|
)
|
|
} |