Skip to content

Commit

Permalink
Remove images and select box from the application gallery page
Browse files Browse the repository at this point in the history
  • Loading branch information
harishmohanraj committed Dec 17, 2024
1 parent abd27a1 commit 93277a6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 14 deletions.
3 changes: 1 addition & 2 deletions website/mint-style.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 0 additions & 12 deletions website/snippets/components/GalleryPage.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -129,21 +129,9 @@ export const GalleryPage = ({

return (
<div className="examples-gallery-container">
<select
multiple
className="tag-filter"
data-placeholder="Filter by tags"
>
{allTags.map(tag => (
<option key={tag} value={tag}>
{tag}
</option>
))}
</select>
<CardGroup cols={3}>
{galleryItems.map((item, index) => (
<Card key={index} href={item.link}>
{imageFunc(item)}
<h5 className="card-title">{item.title}</h5>
{badges(item)}
<p className="card-description">{item.description || item.title}</p>
Expand Down

0 comments on commit 93277a6

Please sign in to comment.