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

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

export default function TrophiesPage() {
  return (
    <main>
      <Trophies />
      <Footer />
    </main>
  )
}
