import Container from "@/app/_components/container"; import { HeroPost } from "@/app/_components/hero-post"; import { Intro } from "@/app/_components/intro"; import { MoreStories } from "@/app/_components/more-stories"; import { getAllPosts } from "@/lib/api"; export default function Index() { const allPosts = getAllPosts(); const heroPost = allPosts[0]; const morePosts = allPosts.slice(1); return (
{morePosts.length > 0 && }
); }