mirror of
https://github.com/rjNemo/orbital-orbit
synced 2026-06-11 02:06:39 +00:00
14 lines
250 B
Text
14 lines
250 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>
|