blog/src/components/SteamGame.astro
thislight 4bd975796e
All checks were successful
Build & Depoly / Depoly blog (push) Successful in 1m52s
Move to astro
2025-04-11 21:52:23 +08:00

22 lines
330 B
Text

---
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>