website/src/pages/gallery.md
import Card from '@site/src/components/card';
export const GalleryCard = ({title, liveUrl, sourcesUrl, description, imageUrl}) => ( <Card> <a className="gallery-live-link" href={liveUrl}>
<h2>{title}</h2>
<div className="gallery-description">{description}</div>
</a>
<div className="gallery-footer">
<a className="gallery-github-link" href={sourcesUrl} title="View source code"></a>
</div>
</Card>
);
<GalleryCard
title="Seven Spell"
imageUrl="seven-spell.png"
description="Create as many 3+ letter words as you can using the same letters given to all users"
liveUrl="https://ss.lshss.app/"
sourcesUrl="https://github.com/vihutuo/seven_spell"
/>