chore: code formatting clean up
This commit is contained in:
parent
8300bb6327
commit
c10dacfb5f
5 changed files with 192 additions and 177 deletions
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
const {url}= Astro.props;
|
||||
const { url } = Astro.props;
|
||||
---
|
||||
|
||||
<nav><a href={url}>← Back</a></nav>
|
||||
|
||||
<style>
|
||||
|
|
|
@ -22,7 +22,12 @@ const { href, title, body } = Astro.props;
|
|||
|
||||
<style>
|
||||
: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 {
|
||||
|
@ -68,7 +73,7 @@ const { href, title, body } = Astro.props;
|
|||
}
|
||||
|
||||
.link-card:is(:hover, :focus-within) h2 {
|
||||
/*
|
||||
/*
|
||||
color: #4f39fa;
|
||||
*/
|
||||
color: var(--color-brand-blue-2);
|
||||
|
@ -78,6 +83,4 @@ const { href, title, body } = Astro.props;
|
|||
will-change: transform;
|
||||
transform: translateX(2px);
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
|
|
|
@ -2,7 +2,10 @@
|
|||
<ul role="list" style="list-style:none">
|
||||
<li>2022 © <strong>Ayo Ayco</strong>. All Rights Reserved</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>
|
||||
</footer>
|
||||
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
---
|
||||
import Layout from '../layouts/Layout.astro';
|
||||
import Card from '../components/Card.astro';
|
||||
import Footer from '../components/Footer.astro';
|
||||
import Back from '../components/Back.astro';
|
||||
import Layout from "../layouts/Layout.astro";
|
||||
import Footer from "../components/Footer.astro";
|
||||
import Back from "../components/Back.astro";
|
||||
---
|
||||
|
||||
<Layout title="Ayo Ayco | Software Engineer + Web Developer">
|
||||
|
@ -10,10 +9,21 @@ import Back from '../components/Back.astro';
|
|||
<Back url="/" />
|
||||
<h1><span class="text-gradient">Now</span></h1>
|
||||
<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>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>
|
||||
<p>
|
||||
This year (2022) I have moved to The Netherlands with my family;
|
||||
specifically to the northern area of Amsterdam.
|
||||
</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 />
|
||||
<em><a href="https://nownownow.com/about">About now pages</a></em>
|
||||
<Footer />
|
||||
|
@ -64,5 +74,4 @@ import Back from '../components/Back.astro';
|
|||
gap: 1rem;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
---
|
||||
import Layout from '../layouts/Layout.astro';
|
||||
import Card from '../components/Card.astro';
|
||||
import Footer from '../components/Footer.astro';
|
||||
import Back from '../components/Back.astro';
|
||||
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="Ayo Ayco | Software Engineer + Web Developer">
|
||||
|
@ -56,5 +56,4 @@ import Back from '../components/Back.astro';
|
|||
gap: 1rem;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
|
Loading…
Reference in a new issue