import dynamic from 'next/dynamic'
import { Footer } from '@/components/sections/Footer'

const CareerTimeline = dynamic(() => import('@/components/sections/CareerTimeline').then(m => m.CareerTimeline), { ssr: false })

export default function CareerPage() {
  return (
    <main>
      <CareerTimeline />
      <Footer />
    </main>
  )
}
