31 lines
1.1 KiB
TypeScript
31 lines
1.1 KiB
TypeScript
import { Hero } from "@/components/hero"
|
|
import { Navigation } from "@/components/navigation"
|
|
import { TimeSystemsSection } from "@/components/time-systems-section"
|
|
import { KairosChronosSection } from "@/components/kairos-chronos-section"
|
|
import { IndigenousWisdomSection } from "@/components/indigenous-wisdom-section"
|
|
import { CalendarTranslator } from "@/components/calendar-translator"
|
|
import { AlternativeTimekeeping } from "@/components/alternative-timekeeping"
|
|
import { Footer } from "@/components/footer"
|
|
import { SpaceTimeBackground } from "@/components/space-time-background"
|
|
import { CursorWarp } from "@/components/cursor-warp"
|
|
|
|
export default function Page() {
|
|
return (
|
|
<main className="min-h-screen relative">
|
|
<SpaceTimeBackground />
|
|
<CursorWarp />
|
|
|
|
<div className="relative z-10">
|
|
<Navigation />
|
|
<Hero />
|
|
<TimeSystemsSection />
|
|
<KairosChronosSection />
|
|
<IndigenousWisdomSection />
|
|
<CalendarTranslator />
|
|
<AlternativeTimekeeping />
|
|
<Footer />
|
|
</div>
|
|
</main>
|
|
)
|
|
}
|