Files
SlpSoftware/src/features/landing/pages/LandingPage.tsx
T
SluijsensandClaude Sonnet 5 75ec74fe21 Update landing page teksten en verplaats Over-sectie naar boven
Ververst hero-, werkwijze- en over-teksten, plaatst de Over-sectie
voor de pakketten en vervangt de tech-stack-lijst door een
fotoplaceholder zodat bezoekers straks een gezicht bij het bedrijf
zien.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-08-17 10:15:51 +02:00

18 lines
473 B
TypeScript

import { Hero } from '../components/Hero';
import { PackagesSection } from '../components/PackagesSection';
import { ProcessSection } from '../components/ProcessSection';
import { AboutSection } from '../components/AboutSection';
import { ContactSection } from '../components/ContactSection';
export function LandingPage() {
return (
<>
<Hero />
<AboutSection />
<PackagesSection />
<ProcessSection />
<ContactSection />
</>
);
}