feat: add DevHub section and update heading styles across components

This commit is contained in:
2025-10-15 12:35:57 +02:00
parent 6426de95af
commit 5483e7950a
6 changed files with 64 additions and 6 deletions

View File

@@ -1,5 +1,7 @@
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 (
@@ -7,6 +9,12 @@ export default function Download() {
<AnimatedSection>
<DownloadHero />
</AnimatedSection>
<AnimatedSection>
<DevHub />
</AnimatedSection>
<AnimatedSection>
<Faqs />
</AnimatedSection>
</>
)
}