import Image from "next/image"; import type { Chapter } from "@afterlife/shared"; import { formatTextToHtml } from "@/lib/format"; interface ChapterContentProps { chapter: Chapter; } export function ChapterContent({ chapter }: ChapterContentProps) { return (
{/* Chapter indicator */}
{String(chapter.order).padStart(2, "0")}

{chapter.title}

{chapter.coverImage && (
{chapter.coverImage.alternativeText
)}
); }