import ContentThumbnailTemplate from "../components/ContentThumbnailTemplate"; import ContentLockup from "../components/ContentLockup"; import { getAllBlogPosts, getRecentBlogPosts } from "../../lib/content"; export default function LearnPage() { // Get real blog posts from the content system const allPosts = getAllBlogPosts(); const recentPosts = getRecentBlogPosts(3); // Create slug order for consistent background cycling const slugOrder = allPosts.map((post) => post.slug); return (
{/* Content Lockup Header */}
{/* More Articles */}

More Articles

{allPosts.slice(0, 3).map((post, index) => ( ))}
{/* Coming Soon */}

More Content Coming Soon

We're working on adding more educational content to help you build better communities. Check back soon for new articles and resources.

); }