v1 production

This commit is contained in:
2025-12-05 01:01:04 +01:00
parent 0f32d5927b
commit 8fbe1113dd
68 changed files with 2608 additions and 3463 deletions

29
app/unternehmen/it-infrastrukturanalyse/page.tsx Executable file → Normal file
View File

@@ -2,6 +2,8 @@
import { motion } from 'framer-motion'
import Link from 'next/link'
import { FaSearch, FaShieldAlt, FaChartBar, FaMapMarkerAlt, FaComments, FaNetworkWired, FaFileAlt } from 'react-icons/fa'
import AnimatedIcon from '@/components/AnimatedIcon'
import Navigation from '@/components/Navigation'
import Footer from '@/components/Footer'
@@ -48,7 +50,9 @@ export default function ITInfrastrukturanalyse() {
transition={{ duration: 0.6, delay: 0.1 }}
className="feature-card-large"
>
<div className="feature-icon">🔍</div>
<AnimatedIcon delay={0.1}>
<FaSearch size={32} color="var(--color-red)" />
</AnimatedIcon>
<h3>Infrastruktur-Erfassung</h3>
<p>
Wir dokumentieren Ihre gesamte IT-Landschaft: Server, Netzwerke,
@@ -64,7 +68,9 @@ export default function ITInfrastrukturanalyse() {
transition={{ duration: 0.6, delay: 0.2 }}
className="feature-card-large"
>
<div className="feature-icon">🛡</div>
<AnimatedIcon delay={0.2}>
<FaShieldAlt size={32} color="var(--color-red)" />
</AnimatedIcon>
<h3>Sicherheitsanalyse</h3>
<p>
Wir identifizieren Sicherheitslücken, veraltete Systeme und
@@ -80,7 +86,9 @@ export default function ITInfrastrukturanalyse() {
transition={{ duration: 0.6, delay: 0.3 }}
className="feature-card-large"
>
<div className="feature-icon">📊</div>
<AnimatedIcon delay={0.3}>
<FaChartBar size={32} color="var(--color-red)" />
</AnimatedIcon>
<h3>Schulungsbedarfs-Analyse</h3>
<p>
Wir ermitteln den konkreten Schulungsbedarf Ihrer Mitarbeiter. Welche
@@ -112,6 +120,9 @@ export default function ITInfrastrukturanalyse() {
transition={{ duration: 0.6, delay: 0.1 }}
className="feature-card"
>
<AnimatedIcon delay={0.1}>
<FaMapMarkerAlt size={28} color="var(--color-red)" />
</AnimatedIcon>
<h3>Vor-Ort-Begehungen</h3>
<p>Persönliche Inspektion Ihrer IT-Infrastruktur</p>
</motion.div>
@@ -123,6 +134,9 @@ export default function ITInfrastrukturanalyse() {
transition={{ duration: 0.6, delay: 0.2 }}
className="feature-card"
>
<AnimatedIcon delay={0.2}>
<FaComments size={28} color="var(--color-red)" />
</AnimatedIcon>
<h3>Interviews mit Mitarbeitern</h3>
<p>Gespräche zur Ermittlung des Wissensstands</p>
</motion.div>
@@ -134,6 +148,9 @@ export default function ITInfrastrukturanalyse() {
transition={{ duration: 0.6, delay: 0.3 }}
className="feature-card"
>
<AnimatedIcon delay={0.3}>
<FaNetworkWired size={28} color="var(--color-red)" />
</AnimatedIcon>
<h3>Technische Scans</h3>
<p>Automatisierte Analyse von Systemen und Netzwerken</p>
</motion.div>
@@ -145,6 +162,9 @@ export default function ITInfrastrukturanalyse() {
transition={{ duration: 0.6, delay: 0.4 }}
className="feature-card"
>
<AnimatedIcon delay={0.4}>
<FaFileAlt size={28} color="var(--color-red)" />
</AnimatedIcon>
<h3>Dokumentenanalyse</h3>
<p>Auswertung bestehender Dokumentationen</p>
</motion.div>
@@ -222,7 +242,7 @@ export default function ITInfrastrukturanalyse() {
>
<h2>Starten Sie mit der Analyse</h2>
<p>Kontaktieren Sie uns für eine unverbindliche Beratung</p>
<Link href="/kontakt" className="btn btn-primary">
<Link href="/kontakt" className="btn btn-primary btn-large">
IT-Analyse anfordern
</Link>
</motion.div>
@@ -233,4 +253,3 @@ export default function ITInfrastrukturanalyse() {
</>
)
}