Better skeleton

This commit is contained in:
Lee Robinson 2024-08-13 13:25:55 -05:00
parent 56bb3544a6
commit 22f498c0de

View File

@ -2,6 +2,8 @@ import Grid from 'components/grid';
export default function Loading() { export default function Loading() {
return ( return (
<>
<div className="mb-4 h-6" />
<Grid className="grid-cols-2 lg:grid-cols-3"> <Grid className="grid-cols-2 lg:grid-cols-3">
{Array(12) {Array(12)
.fill(0) .fill(0)
@ -11,5 +13,6 @@ export default function Loading() {
); );
})} })}
</Grid> </Grid>
</>
); );
} }