feat: external profiles links for verification
This commit is contained in:
parent
374e0953ff
commit
b15582fc15
1 changed files with 61 additions and 8 deletions
|
@ -1,26 +1,79 @@
|
|||
---
|
||||
const year = new Date().getFullYear();
|
||||
const links = [
|
||||
{
|
||||
text: 'Blog',
|
||||
url: 'https://ayos.blog'
|
||||
},
|
||||
{
|
||||
text: 'Social',
|
||||
url: 'https://social.ayco.io'
|
||||
},
|
||||
{
|
||||
text: 'GitHub',
|
||||
url: 'https://github.com/ayoayco'
|
||||
},
|
||||
{
|
||||
text: 'SourceHut',
|
||||
url: 'https://sr.ht/~ayoayco'
|
||||
},
|
||||
{
|
||||
text: 'LinkedIn',
|
||||
url: 'https://www.linkedin.com/in/ayoayco'
|
||||
},
|
||||
{
|
||||
text: 'Photos',
|
||||
url: 'https://metapixl.com/@ayo'
|
||||
},
|
||||
{
|
||||
text: 'SoundCloud',
|
||||
url: 'https://SoundCloud.com/ayoayco'
|
||||
},
|
||||
{
|
||||
text: 'NPM',
|
||||
url: 'https://www.npmjs.com/~aayco'
|
||||
},
|
||||
{
|
||||
text: 'Instagram',
|
||||
url: 'https://instagram.com/ayoayco'
|
||||
},
|
||||
{
|
||||
text: 'Social Alt (Web Tools)',
|
||||
url: 'https://m.webtoo.ls/@ayo'
|
||||
},
|
||||
]
|
||||
---
|
||||
|
||||
<footer>
|
||||
<ul style="list-style:none">
|
||||
<li>© 2022-{year} <strong>Ayo Ayco</strong></li>
|
||||
<li>
|
||||
<div class="left-section">
|
||||
{
|
||||
links.map((linkObj) => <p><a href={linkObj.url}>{linkObj.text}</a></p>)
|
||||
}
|
||||
|
||||
</div>
|
||||
<div class="right-section">
|
||||
<p>© 2022-{year} <strong>Ayo Ayco</strong></p>
|
||||
<p>
|
||||
This website <a href="https://ayos.blog/stopped-tracking-on-my-sites"
|
||||
>does not track users</a>
|
||||
</li>
|
||||
<li>
|
||||
</p>
|
||||
<p>
|
||||
See the <a href="https://sr.ht/~ayoayco/personal-site">source code</a>
|
||||
</li>
|
||||
</ul>
|
||||
</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<style>
|
||||
footer {
|
||||
margin-top: 1em;
|
||||
text-align: right;
|
||||
display: grid;
|
||||
gap: 1rem;
|
||||
padding: 0;
|
||||
}
|
||||
footer ul {
|
||||
|
||||
footer p {
|
||||
font-size: var(--font-size-sm);
|
||||
margin: 0;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue