blog/src/components/SteamGame.astro

23 lines
330 B
Text
Raw Normal View History

2025-04-11 21:50:48 +08:00
---
interface Props {
id: string;
postscript?: string
}
const { id, postscript } = Astro.props;
const link = new URL(`https://store.steampowered.com/widget/${id}/`)
if (postscript) {
link.searchParams.set("t", postscript)
}
---
<iframe
src={link.toString()}
frameborder="0"
width="100%"
height="190">
</iframe>