blob: 7fedd143ef6741c953cae96a54cb6e9c270d1cc6 (
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>
)
}
|