import { getSortedPostsData, getFeaturedPosts } from '@/lib/blog' import BlogHeader from '@/components/BlogHeader' import BlogFooter from '@/components/BlogFooter' import PostCard from '@/components/PostCard' export default function HomePage() { const allPosts = getSortedPostsData() const featuredPosts = getFeaturedPosts() const recentPosts = allPosts.slice(0, 6) return (
{/* Hero Section */}

Informed Agentic AI

Deep dives into AI orchestration, agent coordination, and the future of intelligent systems from the team building CHORUS.

{/* Featured Posts */} {featuredPosts.length > 0 && (

Featured Posts

{featuredPosts.map((post) => ( ))}
)} {/* Recent Posts */}

Recent Posts

{recentPosts.length > 0 ? (
{recentPosts.map((post) => ( ))}
) : (

Coming Soon

We're preparing some excellent content about contextual AI and agent orchestration. Check back soon for our first posts!

)}
) }