Files
www_projectmycelium_com/src/pages/download/DownloadPage.tsx
2025-10-24 02:17:33 +03:00

18 lines
360 B
TypeScript

import { AnimatedSection } from '@/components/AnimatedSection'
import { DownloadHero } from './DownloadHero'
import { DevHub } from './DevHub'
export default function DownloadPage() {
return (
<>
<AnimatedSection>
<DownloadHero />
</AnimatedSection>
<AnimatedSection>
<DevHub />
</AnimatedSection>
</>
)
}