degmods.com/src/components/GameCard.tsx

22 lines
511 B
TypeScript
Raw Normal View History

2024-07-11 12:15:03 +00:00
import '../styles/cardGames.css'
type GameCardProps = {
backgroundLink: string
}
export const GameCard = ({ backgroundLink }: GameCardProps) => {
return (
<a className='cardGameMainWrapperLink' href='search.html'>
<div
className='cardGameMain'
style={{
background: `url("${backgroundLink}") center / cover no-repeat`
}}
></div>
<div className='cardGameMainTitle'>
<p>This is a game title, the best game title</p>
</div>
</a>
)
}