supermemory/apps/web/app/(navigation)/settings/integrations/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

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>
)
}