"use client" import type React from "react" import { Button } from "@/components/ui/button" import { Card, CardContent } from "@/components/ui/card" import { ArrowRight, Calendar, MapPin, Users, Heart, Sprout, Network, X } from "lucide-react" import Link from "next/link" import { useState } from "react" export default function HomePage() { const [selectedImage, setSelectedImage] = useState(null) const handleImageClick = (imageSrc: string) => { setSelectedImage(imageSrc) } const handleCloseModal = () => { setSelectedImage(null) } const handleKeyDown = (e: React.KeyboardEvent) => { if (e.key === "Escape") { handleCloseModal() } } const handleAddToCalendar = () => { const event = { title: "Crypto Commons Gathering 2026", description: "A week-long retreat where genuine desire for postcapitalist change meets blockchain tinkering, commons building, and radical imagination in the Austrian Alps.", location: "Commons Hub, Richard von Schoeller-Straße 9, 2651 Reichenau an der Rax, Austria", startDate: "2026-08-16T15:00:00", endDate: "2026-08-22T12:00:00", } const icsContent = `BEGIN:VCALENDAR VERSION:2.0 PRODID:-//Crypto Commons Gathering//CCG 2026//EN BEGIN:VEVENT UID:ccg2026@cryptocommonsgather.ing DTSTAMP:${new Date().toISOString().replace(/[-:]/g, "").split(".")[0]}Z DTSTART:${event.startDate.replace(/[-:]/g, "")} DTEND:${event.endDate.replace(/[-:]/g, "")} SUMMARY:${event.title} DESCRIPTION:${event.description} LOCATION:${event.location} STATUS:CONFIRMED END:VEVENT END:VCALENDAR` const blob = new Blob([icsContent], { type: "text/calendar;charset=utf-8" }) const link = document.createElement("a") link.href = URL.createObjectURL(blob) link.download = "ccg2026.ics" document.body.appendChild(link) link.click() document.body.removeChild(link) } return (
{selectedImage && (
Zoomed view e.stopPropagation()} />
)} {/* Hero Section */}

Join the SIXTH edition of the

Crypto Commons
Gathering

August 16-22, 2026

A week-long retreat where genuine desire for postcapitalist change meets blockchain tinkering, commons building, and radical imagination in the Austrian Alps.

Reichenau an der Rax, Austria
6 Days • Unconference
Hackers, Academics, Activists, Researchers, Builders
{/* Community Photos Section */}
handleImageClick("/images/20220901-085249.jpg")} > Wooden bridge in Reichenau an der Rax with Austrian Alps
handleImageClick("/images/20220505-113225.jpg")} > CCG 2022 community group photo in the Austrian Alps
handleImageClick("/images/20250826-161715.jpg")} > Discussion circle at Commons Hub with Austrian Alps backdrop
{/* What is CCG Section */}

What is CCG?

The Crypto Commons Gathering (CCG) is an annual week-long retreat organised by the Crypto Commons Association in collaboration with the Commons Hub. To its growing community, it serves as a recurring temporary refuge from late-capitalism (or something worse) and as a convivium to reimagine how we organize value, care and meaning for a "post-capitalist world of many worlds".

2026 marks the 6th edition of the CCG — six years of bringing together commons builders, token tinkerers, speculative worldbuilders, artists, complex systems thinkers, degens turned regen, and everyone curious about the weird futures that emerge when crypto meets genuine international and intersectional postcapitalist desire.

Lifelong Friendships

Connect with like-minded individuals in a convivial setting

Cross-Pollination

Share visions, trajectories, and strategies

New Infrastructures

Build regenerative and cooperative systems

Participant-Driven

Everyone contributes and shapes the event

{/* Themes Section */}

Unconference Themes: What to Expect

Talks, workshops, and spontaneous experiments at CCG cover a wide range of topics. They often start with a curiosity in using blockchain, tokenization and decentralized governance for the common good, but rarely stay there exclusively – crypto, non-crypto alternatives, open source projects, degrowth initiatives, and other spheres increasingly cross-pollinate here under a decolonial, feminist, queer, multispecies-attuned frame.

Regenerative & Collaborative Finance

ReFi DAO,{" "} EthicHub,{" "} CoFi Gathering,{" "} Regen Network,{" "} Circles UBI

Myco-Economics

MycoFi,{" "} Psilo-Cybernetics,{" "} Post-Appitalism

Governance & Mutualism

Economic Space Agency,{" "} Bread Coop,{" "} Holochain

Solarpunk & Radical Games

pocas,{" "} Solar Punk WOW,{" "} Futurescraft, economic science fiction

{/* Unconference Format */}

Format: How We Explore

CCG follows an open space or "unconference" format. This means the schedule is co-created on-site by all participants: during the daily morning circle, anyone can propose a session, host a discussion, or start a collective experiment, and schedule it at one of five sites across the Hub, each with its own affordances.

Workshops, keynotes, rituals, games and evening performances traditionally unfold organically, reflecting the shared interests, dynamics and projects that emerge over the week.

{/* Location Section */}
Commons Hub in the Austrian Alps

The Commons Hub

Located in the mountains of the Austrian Alps at Reichenau an der Rax, the Commons Hub provides a convivial, off-grid setting perfect for deep reflection and meaningful connection.

The Commons Hub has become a full-fledged event hosting organization, co-led by brothers Felix and Emil Fritsch, with exciting expansion and ecovillage plans in the works.

Richard von Schoeller-Straße 9

2651 Reichenau an der Rax, Austria

{/* CTA Section */}

Join the Sixth Edition of CCG

Whether you're reconnecting or arriving for the first time, CCG 2026 presents a space to collectively take stock of what crypto commons has become and what it still could be.

Interested in the Crypto Commons Association cooperative? Learn more at the event.

{/* Footer */}
) }