mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-09-11 22:51:05 +00:00
feat: layout design with theme improvements new improvements on light mode layout chore: settings page with graph header and memories list
10 lines
No EOL
284 B
TypeScript
10 lines
No EOL
284 B
TypeScript
"use client"
|
|
import { IntegrationsView } from "@/components/views/integrations"
|
|
export default function IntegrationsPage() {
|
|
return (
|
|
<div className="py-6 max-w-4xl">
|
|
<h1 className="text-2xl font-bold text-foreground mb-6">Integrations</h1>
|
|
<IntegrationsView />
|
|
</div>
|
|
)
|
|
} |