feat: add pens to nav
This commit is contained in:
parent
e7e6cda979
commit
746d6a1845
2 changed files with 12 additions and 0 deletions
|
@ -61,4 +61,10 @@ if (Astro.url.pathname !== "/") {
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-device-width: 360px) {
|
||||||
|
#wrapper { text-align: center; }
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -17,11 +17,17 @@ const links: Link[] = [
|
||||||
{
|
{
|
||||||
url: "https://ayco.io/@ayo",
|
url: "https://ayco.io/@ayo",
|
||||||
icon: "mastodon",
|
icon: "mastodon",
|
||||||
|
text: "social"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
url: "https://ayco.io/gh",
|
url: "https://ayco.io/gh",
|
||||||
icon: "github",
|
icon: "github",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
url: "https://codepen.io/ayoayco-the-styleful",
|
||||||
|
icon: "codepen",
|
||||||
|
text: "pens"
|
||||||
|
}
|
||||||
];
|
];
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue