mirror of
https://github.com/rjNemo/orbital-orbit
synced 2026-06-06 06:56:40 +00:00
29 lines
478 B
Text
29 lines
478 B
Text
---
|
|
import Social from "./Social.astro"
|
|
|
|
const platforms = [
|
|
{
|
|
platform: "GitHub",
|
|
username: "rjNemo",
|
|
},{
|
|
platform: "LinkedIn",
|
|
username: "ruidy-nemausat",
|
|
}
|
|
]
|
|
const url = `https://ruidy.nemausat.com`
|
|
---
|
|
<footer>
|
|
<p>© 2023 Ruidy</p>
|
|
{platforms.map(platform => (
|
|
<Social platform={platform.platform} username={platform.username}/>
|
|
))}
|
|
<a href={url}>website</a>
|
|
</footer>
|
|
|
|
<style>
|
|
footer {
|
|
display: flex;
|
|
gap: 1rem;
|
|
margin-top: 2rem;
|
|
}
|
|
</style>
|