"use client" import { Card } from "@/components/ui/card" import { Clock, Moon, Calendar } from "lucide-react" import { useEffect, useRef } from "react" export function TimeSystemsSection() { const card1Ref = useRef(null) const card2Ref = useRef(null) useEffect(() => { const observer = new IntersectionObserver( (entries) => { entries.forEach((entry) => { if (entry.isIntersecting) { entry.target.classList.add("animate-fade-in") } }) }, { threshold: 0.2 }, ) if (card1Ref.current) observer.observe(card1Ref.current) if (card2Ref.current) observer.observe(card2Ref.current) return () => observer.disconnect() }, []) return (

The System Construct of Time

Our modern calendar is not natural law—it's a colonial construct designed to disconnect us from Earth's rhythms.

12-60 Frequency

The Imposed System

  • 12 irregular months (28-31 days)
  • 60-second minutes, 60-minute hours
  • Disconnected from lunar cycles
  • Created for taxation & control
  • Promotes linear, mechanical thinking

13-20 Frequency

The Natural Rhythm

  • 13 perfect 28-day lunar months
  • 20 solar seals (fingers + toes)
  • Aligned with moon phases & menstruation
  • Honors cyclical, fractal nature
  • 365 days (13 × 28 + 1 day out of time)

Why This Matters

The Gregorian calendar was imposed globally through colonization, severing indigenous peoples from their ancestral time-keeping systems. By adopting the 12-60 frequency, we've internalized a mechanical, productivity-focused relationship with time that disconnects us from natural cycles, our bodies, and the Earth.

The 13-moon calendar reflects the actual lunar cycles we observe in nature. Thirteen moons of 28 days each creates a perfect, fractal harmony that resonates with human biology and Earth's rhythms.

) }