d13f4511cb
Multi-page marketing website positioned as "Deterministic Regulatory Engineering Platform": - 7 pages: Home, Plattform, CE-Prozess, Product Compliance, Architektur, Team, Preise - Platform Bridge animation (adapted from pitch-deck USP slide) - Cookie-Banner with consent-service integration (breakpilot-marketing site) - DE/EN language toggle + Dark/Light theme - Docker service on port 3014 [guardrail-change] PlatformBridgeSection.tsx added to loc-exceptions (816 LOC, SVG animation) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
24 lines
646 B
TypeScript
24 lines
646 B
TypeScript
import Navbar from '@/components/layout/Navbar'
|
|
import Footer from '@/components/layout/Footer'
|
|
import ChatFAB from '@/components/layout/ChatFAB'
|
|
import HeroSection from '@/components/sections/HeroSection'
|
|
import ProblemFlowSection from '@/components/sections/ProblemFlowSection'
|
|
import UseCaseCards from '@/components/sections/UseCaseCards'
|
|
import TrustBar from '@/components/sections/TrustBar'
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<>
|
|
<Navbar />
|
|
<main>
|
|
<HeroSection />
|
|
<ProblemFlowSection />
|
|
<UseCaseCards />
|
|
<TrustBar />
|
|
</main>
|
|
<Footer />
|
|
<ChatFAB />
|
|
</>
|
|
)
|
|
}
|