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