"use client" import { Card } from "@/components/ui/card" import { useEffect, useRef } from "react" export function IndigenousWisdomSection() { const cardsRef = useRef<(HTMLDivElement | null)[]>([]) useEffect(() => { const observer = new IntersectionObserver( (entries) => { entries.forEach((entry, index) => { if (entry.isIntersecting) { setTimeout(() => { entry.target.classList.add("animate-fade-in") }, index * 100) } }) }, { threshold: 0.1 }, ) cardsRef.current.forEach((card) => { if (card) observer.observe(card) }) return () => observer.disconnect() }, []) return (

Indigenous Time Wisdom

Ancient cultures across the globe developed sophisticated time-keeping systems aligned with natural cycles.

Turtle shell with 13 segments

The Turtle's Teaching

Many Indigenous North American nations recognize the turtle as a timekeeper. The turtle's back has 13 large segments, representing the 13 moons of the year. The 28 smaller scales around the edge represent the 28 days in each lunar month.

This isn't coincidence—it's nature's calendar, carried on the back of one of Earth's oldest creatures. The turtle reminds us that we are part of natural time, not separate from it.

"Turtle Island" (North America) itself is named for this sacred relationship between land, time, and life.

(cardsRef.current[0] = el)} className="p-6 warp-element opacity-0 hover:shadow-lg hover:shadow-primary/20 transition-all duration-300" >

Maya Tzolk'in

Sacred 260-day Calendar

The Maya Tzolk'in combines 13 numbers with 20 day signs, creating a 260-day sacred cycle that aligns with human gestation and agricultural rhythms.

(cardsRef.current[1] = el)} className="p-6 warp-element opacity-0 hover:shadow-lg hover:shadow-primary/20 transition-all duration-300" >

Māori Maramataka

Lunar Planting Calendar

Māori people of New Zealand follow the moon phases for planting, fishing, and harvesting, with each lunar night having specific energies and activities.

(cardsRef.current[2] = el)} className="p-6 warp-element opacity-0 hover:shadow-lg hover:shadow-primary/20 transition-all duration-300" >

Lakota Winter Count

Pictorial Year Tracking

Lakota nations recorded history through winter counts, with each year marked by a significant event rather than an arbitrary number, honoring cyclical time.

) }