'use client' import React from 'react' import { useRouter } from 'next/navigation' import { useTOMGenerator } from '@/lib/sdk/tom-generator' import { SecurityProfileStep } from '@/components/sdk/tom-generator/steps/SecurityProfileStep' import { TOM_GENERATOR_STEPS } from '@/lib/sdk/tom-generator/types' /** * Step 4: Security Profile * * Collects security measures including: * - Authentication (Password, MFA, SSO) * - IAM/PAM * - Logging & Retention * - Backup & DR * - Vulnerability Management, Pentests, Training */ export default function SecurityPage() { const router = useRouter() const { state, goToNextStep, goToPreviousStep } = useTOMGenerator() const currentStepIndex = TOM_GENERATOR_STEPS.findIndex((s) => s.id === 'security-profile') const prevStep = TOM_GENERATOR_STEPS[currentStepIndex - 1] const nextStep = TOM_GENERATOR_STEPS[currentStepIndex + 1] const handleNext = () => { goToNextStep() if (nextStep) { router.push(nextStep.url) } } const handleBack = () => { goToPreviousStep() if (prevStep) { router.push(prevStep.url) } } return (
Erfassen Sie Ihre bestehenden Sicherheitsmassnahmen. Diese Informationen helfen bei der Identifikation von Luecken und Verbesserungspotenzialen.