jp-visser/app/page.tsx
2026-04-24 16:06:18 +02:00

23 lines
647 B
TypeScript

import { Nav } from "@/components/nav";
import { Hero } from "@/components/hero";
import { MotivationSection } from "@/components/motivation";
import { ExperienceSection } from "@/components/experience";
import { SkillsSection } from "@/components/skills";
import { AppsSection } from "@/components/apps";
import { ContactSection } from "@/components/contact";
import { Footer } from "@/components/footer";
export default function Home() {
return (
<>
<Nav />
<Hero />
<MotivationSection />
<ExperienceSection />
<SkillsSection />
<AppsSection />
<ContactSection />
<Footer />
</>
);
}