blob: d2ad29000b0c71a6bac75f635603610f3a065372 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
"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>
)
}
|