mirror of
https://github.com/prowler-cloud/prowler.git
synced 2025-12-19 05:17:47 +00:00
Co-authored-by: Alan Buscaglia <alanbuscaglia@MacBook-Pro.local> Co-authored-by: alejandrobailo <alejandrobailo94@gmail.com> Co-authored-by: César Arroba <cesar@prowler.com> Co-authored-by: Alejandro Bailo <59607668+alejandrobailo@users.noreply.github.com>
35 lines
957 B
TypeScript
35 lines
957 B
TypeScript
import React from "react";
|
|
|
|
import {
|
|
JiraIntegrationCard,
|
|
S3IntegrationCard,
|
|
SecurityHubIntegrationCard,
|
|
} from "@/components/integrations";
|
|
import { ContentLayout } from "@/components/ui";
|
|
|
|
export default async function Integrations() {
|
|
return (
|
|
<ContentLayout title="Integrations" icon="lucide:puzzle">
|
|
<div className="flex flex-col gap-6">
|
|
<div className="flex flex-col gap-4">
|
|
<p className="text-sm text-gray-600 dark:text-gray-300">
|
|
Connect external services to enhance your security workflow and
|
|
automatically export your scan results.
|
|
</p>
|
|
</div>
|
|
|
|
<div className="grid gap-6">
|
|
{/* Amazon S3 Integration */}
|
|
<S3IntegrationCard />
|
|
|
|
{/* AWS Security Hub Integration */}
|
|
<SecurityHubIntegrationCard />
|
|
|
|
{/* Jira Integration */}
|
|
<JiraIntegrationCard />
|
|
</div>
|
|
</div>
|
|
</ContentLayout>
|
|
);
|
|
}
|