export function ComicPreview({
currentPage,
goToPage,
}: {
currentPage: number;
goToPage: (page: number) => void;
}) {
return (
{/* Dot grid background */}
{/* Background floating comics - less prominent */}
{/* Page transition container */}
{/* Page 1 */}
American Modern
{'"And a hero shall rise!"'}
{/* Page 2 */}
Manga
{'"The battle begins!"'}
Noir
{'"The city needs a hero..."'}
{/* Page 4 */}
Vintage
{'"Super Action"'}
);
}