Skip to content

Commit

Permalink
remove item cards on home page
Browse files Browse the repository at this point in the history
  • Loading branch information
0xTranqui committed May 1, 2024
1 parent b1f25c0 commit a06d8cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/site/app/(base)/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default async function Home({
return (
<>
<Grid className="grid-cols-2 md:grid-cols-[repeat(auto-fill,_minmax(255px,_1fr))] gap-5">
{adds.items.slice(0, 60).map((add, index) =>
{/* {adds.items.slice(0, 60).map((add, index) =>
add.removed ? null : (
<ItemCard
key={index}
Expand All @@ -37,7 +37,7 @@ export default async function Home({
}
/>
),
)}
)} */}
</Grid>
<Flex className="pt-36 justify-center md:mr-[19%]">
{/* @ts-ignore */}
Expand Down

0 comments on commit a06d8cc

Please sign in to comment.