feat: add pens to nav

This commit is contained in:
Ayo 2023-06-21 13:47:45 +02:00
parent e7e6cda979
commit 746d6a1845
2 changed files with 12 additions and 0 deletions

View file

@ -61,4 +61,10 @@ if (Astro.url.pathname !== "/") {
margin: 0 auto;
text-align: right;
}
@media only screen and (max-device-width: 360px) {
#wrapper { text-align: center; }
}
</style>

View file

@ -17,11 +17,17 @@ const links: Link[] = [
{
url: "https://ayco.io/@ayo",
icon: "mastodon",
text: "social"
},
{
url: "https://ayco.io/gh",
icon: "github",
},
{
url: "https://codepen.io/ayoayco-the-styleful",
icon: "codepen",
text: "pens"
}
];
---