chore: code formatting clean up

This commit is contained in:
Ayo 2022-09-26 10:49:41 +02:00
parent 8300bb6327
commit c10dacfb5f
5 changed files with 192 additions and 177 deletions

View file

@ -1,6 +1,7 @@
--- ---
const {url}= Astro.props; const { url } = Astro.props;
--- ---
<nav><a href={url}>&larr; Back</a></nav> <nav><a href={url}>&larr; Back</a></nav>
<style> <style>

View file

@ -22,7 +22,12 @@ const { href, title, body } = Astro.props;
<style> <style>
:root { :root {
--link-gradient: linear-gradient(45deg, var(--color-brand-blue-1), var(--color-brand-blue-3) 30%, var(--color-border) 60%); --link-gradient: linear-gradient(
45deg,
var(--color-brand-blue-1),
var(--color-brand-blue-3) 30%,
var(--color-border) 60%
);
} }
.link-card { .link-card {
@ -68,7 +73,7 @@ const { href, title, body } = Astro.props;
} }
.link-card:is(:hover, :focus-within) h2 { .link-card:is(:hover, :focus-within) h2 {
/* /*
color: #4f39fa; color: #4f39fa;
*/ */
color: var(--color-brand-blue-2); color: var(--color-brand-blue-2);
@ -78,6 +83,4 @@ const { href, title, body } = Astro.props;
will-change: transform; will-change: transform;
transform: translateX(2px); transform: translateX(2px);
} }
</style> </style>

View file

@ -2,7 +2,10 @@
<ul role="list" style="list-style:none"> <ul role="list" style="list-style:none">
<li>2022 &#169; <strong>Ayo Ayco</strong>. All Rights Reserved</li> <li>2022 &#169; <strong>Ayo Ayco</strong>. All Rights Reserved</li>
<li><strong>Ayo Ayco</strong> | Software Engineer + Web Developer</li> <li><strong>Ayo Ayco</strong> | Software Engineer + Web Developer</li>
<li>Missing old content? I moved <a href="https://classic.ayco.io">my previous site</a></li> <li>
Missing old content? I moved <a href="https://classic.ayco.io"
>my previous site</a>
</li>
</ul> </ul>
</footer> </footer>

View file

@ -1,8 +1,7 @@
--- ---
import Layout from '../layouts/Layout.astro'; import Layout from "../layouts/Layout.astro";
import Card from '../components/Card.astro'; import Footer from "../components/Footer.astro";
import Footer from '../components/Footer.astro'; import Back from "../components/Back.astro";
import Back from '../components/Back.astro';
--- ---
<Layout title="Ayo Ayco | Software Engineer + Web Developer"> <Layout title="Ayo Ayco | Software Engineer + Web Developer">
@ -10,10 +9,21 @@ import Back from '../components/Back.astro';
<Back url="/" /> <Back url="/" />
<h1><span class="text-gradient">Now</span></h1> <h1><span class="text-gradient">Now</span></h1>
<em>What am I currently up to?</em> <em>What am I currently up to?</em>
<p>This year (2022) I have moved to The Netherlands with my family; specifically to the northern area of Amsterdam.</p> <p>
<p>For work, I'm busy being a consultant, doing mostly frontend development.</p> This year (2022) I have moved to The Netherlands with my family;
<p>If I'm not working, I am playing games on Xbox with my kid, Kahel, or most probably trying to annoy my wife, Jen, with silly jokes.</p> specifically to the northern area of Amsterdam.
<p>I have also found a renewed joy in exploring opensource projects in my spare time.</p> </p>
<p>
For work, I'm busy being a consultant, doing mostly frontend development.
</p>
<p>
If I'm not working, I am playing games on Xbox with my kid, Kahel, or most
probably trying to annoy my wife, Jen, with silly jokes.
</p>
<p>
I have also found a renewed joy in exploring opensource projects in my
spare time.
</p>
<hr /> <hr />
<em><a href="https://nownownow.com/about">About now pages</a></em> <em><a href="https://nownownow.com/about">About now pages</a></em>
<Footer /> <Footer />
@ -64,5 +74,4 @@ import Back from '../components/Back.astro';
gap: 1rem; gap: 1rem;
padding: 0; padding: 0;
} }
</style> </style>

View file

@ -1,8 +1,8 @@
--- ---
import Layout from '../layouts/Layout.astro'; import Layout from "../layouts/Layout.astro";
import Card from '../components/Card.astro'; import Card from "../components/Card.astro";
import Footer from '../components/Footer.astro'; import Footer from "../components/Footer.astro";
import Back from '../components/Back.astro'; import Back from "../components/Back.astro";
--- ---
<Layout title="Ayo Ayco | Software Engineer + Web Developer"> <Layout title="Ayo Ayco | Software Engineer + Web Developer">
@ -56,5 +56,4 @@ import Back from '../components/Back.astro';
gap: 1rem; gap: 1rem;
padding: 0; padding: 0;
} }
</style> </style>