Skip to content

Commit

Permalink
Update Wall.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
danieleguido committed Oct 2, 2024
1 parent e9549a4 commit 4ab1123
Showing 1 changed file with 15 additions and 14 deletions.
29 changes: 15 additions & 14 deletions src/components/Wall.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,36 +103,37 @@ const Wall = ({
</Col>
</Row>
<Row className="my-3 align-items-bottom">
<Col className=" d-flex justify-content-center align-items-end ">
<h3 className=" p-3 w-100">
Notebooks you didn't think you needed
</h3>
<Col className=" d-flex justify-content-center align-items-end ">
<h3 className=" p-3 w-100">Tutorials</h3>
</Col>
<Col className=" d-flex justify-content-center align-items-end ">
<h3 className=" p-3 w-100">Work with your data!</h3>
</Col>
<Col className=" d-flex justify-content-center align-items-end ">
<h3 className=" p-3 w-100">Tutorials</h3>
<Col className=" d-flex justify-content-center align-items-end ">
<h3 className=" p-3 w-100">
Notebooks you didn't think you needed
</h3>
</Col>
</Row>
<Row className="my-3 align-items-bottom">
<Col>
{seriesUnexpected.map((collection) => (
<CollectionCard
key={collection.title}
collection={collection}
className="mb-2"
/>
{seriesTutorials.map((collection) => (
<CollectionCard key={collection.title} collection={collection} />
))}
</Col>

<Col>
{seriesYourData.map((collection) => (
<CollectionCard key={collection.title} collection={collection} />
))}
</Col>
<Col>
{seriesTutorials.map((collection) => (
<CollectionCard key={collection.title} collection={collection} />
{seriesUnexpected.map((collection) => (
<CollectionCard
key={collection.title}
collection={collection}
className="mb-2"
/>
))}
</Col>
</Row>
Expand Down

0 comments on commit 4ab1123

Please sign in to comment.