forked from sashaastiadi/www_mycelium_net
13 lines
240 B
TypeScript
13 lines
240 B
TypeScript
import { AnimatedSection } from '@/components/AnimatedSection'
|
|
import { Hero } from '@/components/Hero'
|
|
|
|
export default function Download() {
|
|
return (
|
|
<>
|
|
<AnimatedSection>
|
|
<Hero />
|
|
</AnimatedSection>
|
|
</>
|
|
)
|
|
}
|