Files
www_mycelium_net/src/app/(main)/download/page.tsx

21 lines
498 B
TypeScript

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