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>
18 lines
473 B
TypeScript
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 />
|
|
</>
|
|
);
|
|
}
|