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

13 lines
240 B
TypeScript

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