add News component to home page, update Quote styling with green theme, and create DePIN Summit recap content

This commit is contained in:
2025-12-05 18:09:37 +01:00
parent 48d63152c7
commit 56b0718f9b
7 changed files with 339 additions and 18 deletions

View File

@@ -12,6 +12,7 @@ import { About } from '@/components/home/About'
import { Ventures } from '@/components/home/Ventures'
import { Foundation } from '@/components/home/Foundation'
import { Team } from '@/components/home/Team'
import { News } from '@/components/home/News'
export default function Home() {
return (
@@ -39,23 +40,14 @@ export default function Home() {
<Team />
</FadeInOnView>
<FadeInOnView delayMs={100}>
<HomePrinciples />
</FadeInOnView>
<FadeInOnView delayMs={200}>
<HomeMilestones />
</FadeInOnView>
<FadeInOnView delayMs={300}>
<HomeVentures />
</FadeInOnView>
<FadeInOnView delayMs={400}>
<Quote />
</FadeInOnView>
<FadeInOnView delayMs={500}>
<News />
</FadeInOnView>
<FadeInOnView delayMs={500}>
<CallToAction />
</FadeInOnView>