n-daisuke897-blog/src/components/Social.astro
2025-01-14 21:17:35 +09:00

14 lines
270 B
Text

---
const { platform, username } = Astro.props;
---
<a href={`https://www.${platform}.com/${username}`}>{platform}</a>
<style>
a {
padding: 0.5rem 1rem;
color: white;
background-color: #4c1d95;
text-decoration: none;
}
</style>