22 lines
745 B
TypeScript
22 lines
745 B
TypeScript
import { HeroSection } from "@/components/hero-section"
|
|
import { MycoeconomicsSection } from "@/components/mycoeconomics-section"
|
|
import { AlternativesSection } from "@/components/alternatives-section"
|
|
import { CritiqueSection } from "@/components/critique-section"
|
|
import { PostAppitalismSection } from "@/components/post-appitalism-section"
|
|
import { ActionSection } from "@/components/action-section"
|
|
import { Navigation } from "@/components/navigation"
|
|
|
|
export default function HomePage() {
|
|
return (
|
|
<main className="min-h-screen">
|
|
<Navigation />
|
|
<HeroSection />
|
|
<CritiqueSection />
|
|
<MycoeconomicsSection />
|
|
<AlternativesSection />
|
|
<PostAppitalismSection />
|
|
<ActionSection />
|
|
</main>
|
|
)
|
|
}
|