jeffemmett-website-redesign/app/page.tsx

22 lines
613 B
TypeScript

import { CursorEffect } from '@/components/cursor-effect'
import { HeroSection } from '@/components/hero-section'
import { WorkSection } from '@/components/work-section'
import { AboutSection } from '@/components/about-section'
import { SkillsSection } from '@/components/skills-section'
import { ContactSection } from '@/components/contact-section'
export default function Home() {
return (
<>
<CursorEffect />
<main className="relative">
<HeroSection />
<WorkSection />
<AboutSection />
<SkillsSection />
<ContactSection />
</main>
</>
)
}