jamulix-homepage/app/page.tsx

23 lines
631 B
TypeScript
Raw Normal View History

2026-04-24 17:12:51 +02:00
import { Header } from '@/components/header'
import { Hero } from '@/components/hero'
import { AboutSection } from '@/components/about-section'
import { ProjectsSection } from '@/components/projects-section'
import { FocusSection } from '@/components/focus-section'
import { PhilosophySection } from '@/components/philosophy-section'
import { Footer } from '@/components/footer'
export default function Home() {
return (
<>
<Header />
<main>
<Hero />
<AboutSection />
<ProjectsSection />
<FocusSection />
<PhilosophySection />
</main>
<Footer />
</>
)
}