import ContentThumbnailTemplate from "../components/ContentThumbnailTemplate"; import ContentLockup from "../components/ContentLockup"; import AskOrganizer from "../components/AskOrganizer"; import { getAllBlogPosts } from "../../lib/content"; export default function LearnPage() { // Get real blog posts from the content system const allPosts = getAllBlogPosts(); const contentLockupData = { title: "Organizing is hard", subtitle: "Find answers to your questions and see how other groups have solved similar challenges.", variant: "learn" as const, alignment: "left" as const, }; const askOrganizerData = { title: "Still have questions?", subtitle: "Get answers from an experienced organizer", description: "Our community of organizers is here to help you navigate the challenges of building and maintaining effective community organizations.", buttonText: "Ask an organizer", buttonHref: "/contact", variant: "centered" as const, }; return (