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 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>
|
<footer>
|
||||||
<ul style="list-style:none">
|
<div class="left-section">
|
||||||
<li>© 2022-{year} <strong>Ayo Ayco</strong></li>
|
{
|
||||||
<li>
|
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"
|
This website <a href="https://ayos.blog/stopped-tracking-on-my-sites"
|
||||||
>does not track users</a>
|
>does not track users</a>
|
||||||
</li>
|
</p>
|
||||||
<li>
|
<p>
|
||||||
See the <a href="https://sr.ht/~ayoayco/personal-site">source code</a>
|
See the <a href="https://sr.ht/~ayoayco/personal-site">source code</a>
|
||||||
</li>
|
</p>
|
||||||
</ul>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
footer {
|
footer {
|
||||||
margin-top: 1em;
|
margin-top: 1em;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
|
display: grid;
|
||||||
|
gap: 1rem;
|
||||||
|
padding: 0;
|
||||||
}
|
}
|
||||||
footer ul {
|
|
||||||
|
footer p {
|
||||||
font-size: var(--font-size-sm);
|
font-size: var(--font-size-sm);
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue