import { Box } from "@mui/material"; const PAGE_COUNT = 4; export const BookPages = () => { return ( <> {/* Pages */} {[...Array(PAGE_COUNT)].map((_, index) => { const offset = PAGE_COUNT - index; const verticalOffset = offset * 1; return ( ); })} ); }; export default BookPages;