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 (