improvements

This commit is contained in:
Emre
2025-10-24 02:17:33 +03:00
parent 644bb34419
commit 3a7aa82ff7
34 changed files with 740 additions and 442 deletions

View File

@@ -0,0 +1,17 @@
import { AnimatedSection } from '@/components/AnimatedSection'
import { DownloadHero } from './DownloadHero'
import { DevHub } from './DevHub'
export default function DownloadPage() {
return (
<>
<AnimatedSection>
<DownloadHero />
</AnimatedSection>
<AnimatedSection>
<DevHub />
</AnimatedSection>
</>
)
}