14 lines
270 B
Text
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>
|