ayco.io-astro/src/pages/social.astro
2022-12-21 00:28:46 +01:00

65 lines
1.4 KiB
Text

---
import Layout from "../layouts/Layout.astro";
import Card from "../components/Card.astro";
import Footer from "../components/Footer.astro";
import Back from "../components/Back.astro";
---
<Layout title="Social Links | Ayo Ayco | Software Engineer + Web Developer">
<main>
<Back url="/" />
<h1>Social <span class="text-gradient">Links</span></h1>
<ul role="list" class="link-card-grid">
<Card
newTab={true}
rel="me"
href="https://social.ayco.io/@ayo"
title="#Fediverse"
body="Follow my social microblog"
/>
<Card
newTab={true}
rel="me"
href="https://www.linkedin.com/in/ayoayco/"
title="LinkedIn"
body="Connect with me and my professional network"
/>
<Card
newTab={true}
rel="me"
href="https://soundcloud.com/ayoayco/"
title="SoundCloud"
body="Some music I made as a hobby"
/>
</ul>
<Footer />
</main>
</Layout>
<style>
h1 {
margin: 2rem 0;
}
.highlighted-content {
line-height: 1.6;
margin: 1rem 0;
background: #4f39fa;
padding: 1rem;
border-radius: 0.4rem;
color: var(--color-bg);
}
.highlighted-content code {
font-size: 0.875em;
border: 0.1em solid var(--color-border);
border-radius: 4px;
padding: 0.15em 0.25em;
}
.link-card-grid {
display: grid;
gap: 1rem;
padding: 0;
}
</style>