208 lines
No EOL
4.6 KiB
Text
208 lines
No EOL
4.6 KiB
Text
---
|
|
import Layout from "../layouts/Layout.astro";
|
|
import Card from "../components/Card.astro";
|
|
import Footer from "../components/Footer.astro";
|
|
|
|
const response = await fetch('https://social.ayco.io/api/v1/accounts/109547735999980313')
|
|
const {
|
|
avatar,
|
|
followers_count,
|
|
following_count,
|
|
note
|
|
} = await response.json();
|
|
---
|
|
|
|
<Layout>
|
|
<section class="highlighted-section">
|
|
<div class="highlighted-section__content">
|
|
<img
|
|
class="highlighted-section__content__profile-picture"
|
|
alt="Ayo Ayco's picture"
|
|
src={avatar}
|
|
width="150"
|
|
/>
|
|
<div class="highlighted-section__content__text">
|
|
<h1 title="Ayo Ayco | Software Engineer + Web Developer">
|
|
<span class="heavy-text">Ayo</span>Ayco
|
|
</h1>
|
|
<div class="highlighted__note" set:html={note} />
|
|
<ul role="list">
|
|
<li><a href="https://social.ayco.io/@ayo/followers">{followers_count}</a> Followers</li>
|
|
<li><a href="https://social.ayco.io/@ayo/following">{following_count} </a>Following</li>
|
|
</ul>
|
|
<a href="/now" class="now-wrapper">
|
|
<span class="now-label">Now</span>
|
|
<span class="status">Building a Cozy Web without borders...</span>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<main>
|
|
<section class="cards-section">
|
|
<ul role="list" class="cards-section__grid">
|
|
<Card
|
|
href="/showcase"
|
|
title="Fun Side Projects"
|
|
body="See demos of my side projects"
|
|
/>
|
|
<Card
|
|
newTab={true}
|
|
href="/cv"
|
|
title="CV / Resume"
|
|
body="Download and peruse my skills and experience"
|
|
/>
|
|
</ul>
|
|
<Footer />
|
|
</section>
|
|
</main>
|
|
</Layout>
|
|
|
|
<style>
|
|
h1 {
|
|
margin: 0;
|
|
color: rgba(255, 255, 255, 0.75);
|
|
}
|
|
|
|
h1 span.heavy-text {
|
|
font-weight: 900;
|
|
color: white;
|
|
}
|
|
|
|
main {
|
|
max-width: 100% !important;
|
|
}
|
|
|
|
.now-wrapper {
|
|
border: 1px solid rgba(255, 255, 255, 0.2);
|
|
border-radius: 40px;
|
|
padding: 8px 4px;
|
|
font-weight: normal;
|
|
color: white;
|
|
font-size: var(--font-size-sm);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.now-label {
|
|
border-radius: 40px;
|
|
background-color: rgba(0, 0, 0, 0.6);
|
|
color: white;
|
|
padding: 4px 8px;
|
|
text-transform: uppercase;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.status {
|
|
padding-right: 4px;
|
|
}
|
|
|
|
.highlighted-section {
|
|
background: var(--ayo-gradient);
|
|
background-size: 500% 500%;
|
|
animation: pulse 15s ease-in-out infinite;
|
|
border-bottom: 1px solid var(--color-brand-blue-1);
|
|
}
|
|
|
|
.highlighted-section__content {
|
|
margin: auto;
|
|
padding: 1em 0;
|
|
max-width: var(--content-width);
|
|
font-weight: normal;
|
|
font-size: var(--font-size-lg);
|
|
color: var(--color-bg);
|
|
}
|
|
|
|
.highlighted-section__content__profile-picture {
|
|
float: right;
|
|
width: 20%;
|
|
margin: 1em 1em 0 0;
|
|
border: 1px solid var(--color-brand-blue-1);
|
|
display: block;
|
|
border-radius: 50%;
|
|
}
|
|
|
|
.highlighted-section__content ul a {
|
|
color: white;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.highlighted-section__content ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.cards-section {
|
|
margin: auto;
|
|
max-width: var(--content-width);
|
|
}
|
|
|
|
.cards-section__grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(24ch, 1fr));
|
|
gap: 1rem;
|
|
padding: 0;
|
|
}
|
|
|
|
@media only screen and (max-device-width: 360px) {
|
|
.now-wrapper {
|
|
border: 0px;
|
|
font-size: var(--font-size-sm);
|
|
width: 100%;
|
|
|
|
display: -webkit-box;
|
|
-webkit-line-clamp: 1;
|
|
-webkit-box-orient: vertical;
|
|
overflow: hidden;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
.now-label {
|
|
background-color: transparent;
|
|
color: white;
|
|
text-decoration: underline;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.now-label::before {
|
|
content: "* ";
|
|
}
|
|
|
|
.now-label::after {
|
|
content: ":";
|
|
}
|
|
|
|
.highlighted-section__content__profile-picture {
|
|
float: none;
|
|
width: 100px;
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-device-width: 280px) and (max-device-width: 653px) {
|
|
.highlighted-section__content {
|
|
padding: 1em;
|
|
}
|
|
.highlighted-section__content__profile-picture {
|
|
float: none;
|
|
margin: 0;
|
|
width: 100px;
|
|
}
|
|
.highlighted-section__content ul li {
|
|
font-size: var(--font-size-sm);
|
|
}
|
|
}
|
|
|
|
@media only screen and (min-device-width: 360px) and (max-device-width: 812px) {
|
|
.highlighted-section__content {
|
|
padding: 1em;
|
|
}
|
|
.highlighted-section__content ul li {
|
|
font-size: var(--font-size-base);
|
|
}
|
|
}
|
|
</style>
|
|
|
|
<style is:inline>
|
|
.highlighted__note a {
|
|
color: white;
|
|
}
|
|
</style> |