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 (
We're working on adding more educational content to help you build better communities. Check back soon for new articles and resources.