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

13 lines
260 B
TypeScript

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