import { Navigation } from "@/components/navigation" import { Button } from "@/components/ui/button" import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card" import Link from "next/link" export default function EventsPage() { const courses = [ { title: "Introduction to Shiitake Cultivation", duration: "Full Day Workshop", description: "Learn the fundamentals of log-based shiitake cultivation. We'll cover log selection, inoculation techniques, and long-term care of your mushroom logs.", topics: ["Log selection and preparation", "Inoculation methods", "Seasonal care", "Harvesting techniques"], }, { title: "Advanced Mushroom Cultivation", duration: "Weekend Course", description: "Deep dive into the art and science of mushroom farming. Perfect for those looking to start their own cultivation operation or expand their knowledge.", topics: ["Multiple species cultivation", "Forest management", "Sustainable practices", "Market preparation"], }, { title: "Forest Ecology & Mushrooms", duration: "Half Day Experience", description: "Explore the relationship between mushrooms and forest health. A walking tour through the 20-acre forest with hands-on learning.", topics: ["Mycology basics", "Forest ecosystems", "Identification skills", "Sustainable foraging"], }, ] return (
{/* Hero Section */}

Mushroom Cultivation Courses

Learn the ancient art of shiitake cultivation in the heart of a working forest. Hands-on courses taught by someone who lives and breathes mushroom farming.

{/* Courses Section */}
{courses.map((course, index) => (
{course.title} {course.duration}

{course.description}

What You'll Learn:

    {course.topics.map((topic, i) => (
  • {topic}
  • ))}
))}
{/* Experience Section */}

The Learning Experience

🌲

In the Forest

All courses take place in the working forest where shiitake cultivation happens daily. Experience real-world conditions and see established operations in action.

🔥

Stories by the Fire

Courses often include fireside sessions where John shares decades of knowledge, mining tales, and the occasional beat poetry performance.

🤲

Hands-On Learning

Get your hands dirty with practical experience. From drilling logs to harvesting mushrooms, you'll learn by doing.

🏡

Small Groups

Intimate class sizes ensure personal attention and plenty of time for questions. You'll leave with knowledge and new friends.

{/* CTA Section */}

Ready to Learn?

Course schedules vary by season. Get in touch to find out about upcoming dates or to arrange a private workshop for your group.

{/* Footer */}
) }