thomaswilson-sveltekit/src/routes/+page.svelte

186 lines
4.4 KiB
Svelte
Raw Normal View History

2022-04-16 10:43:45 +00:00
<script lang="ts">
import { slide } from 'svelte/transition';
import Navbar from '$lib/components/Navbar.svelte';
2022-04-16 10:43:45 +00:00
let isWorkExpanded = false;
let isPersonalExpanded = false;
</script>
<svelte:head>
<title>Thomas Wilson</title>
</svelte:head>
2022-04-16 10:43:45 +00:00
<Navbar />
2022-07-06 20:01:33 +00:00
2022-04-16 10:43:45 +00:00
<main class="thomaswilson-container">
<section class="section thomaswilson-strapline">
<h1 class="title">Thomas Wilson</h1>
<p>
2022-10-22 12:28:31 +00:00
I'm a software engineer who loves the craft of leading teams, and building software that is
reliable and human-friendly. I build good things with good people for good companies.
2022-04-16 10:43:45 +00:00
</p>
</section>
<section class="work section">
<h2>My work</h2>
{#if isWorkExpanded}
<ul transition:slide={{ duration: 220 }}>
<li>
Right now I'm leading software engineering at <a
class="oxwash"
target="_blank"
rel="noopener noreferrer"
href="https://www.oxwash.com">Oxwash</a
>, we're building the sustainable and scalable future of laundry.
</li>
<li>
I build full-stack software for the web, especially with TypeScript, Node, Svelte, and
React.
</li>
<li>
2022-10-22 12:28:31 +00:00
I lead teams with domain driven design, and agile (with a little 'a') opinions about delivery and collaboration.
2022-04-16 10:43:45 +00:00
</li>
<li>
I've previously built software with data privacy, ed-tech, and sustainability companies.
</li>
<li>
I have a <a
class="thesis"
target="_blank"
rel="noopener noreferrer"
href="https://eprints.soton.ac.uk/418168/">Ph.D. in education technology</a
>, where I looked at how we can use tech in the teaching lab to promote and evidence
understanding.
</li>
<li>
I have only ever worked with companies actively solving environment and societal problems.
</li>
<li><button on:click={() => (isWorkExpanded = false)}> Ew, show less </button></li>
</ul>
{:else}
2022-10-22 12:28:31 +00:00
<p>I build human-friendly software for the web.</p>
2022-04-16 10:43:45 +00:00
<button on:click={() => (isWorkExpanded = true)}> Wow, Show more </button>
{/if}
</section>
<section class="section personal">
<h2>Me</h2>
{#if isPersonalExpanded}
<ul transition:slide={{ duration: 210 }}>
<li>I try to write at least once a month on my <a class="thesis" href="/blog">blog</a>.</li>
<li>I'm learning to sew my own clothes</li>
<li>I love fruity coffees and botanical gins</li>
<li>I used to dance and produce with a contemporary dance company</li>
2022-04-16 10:43:45 +00:00
<li><button on:click={() => (isPersonalExpanded = false)}>Cool, show less</button></li>
</ul>
{:else}
<p>
2022-10-22 12:28:31 +00:00
I like to write on my <a href="/blog">blog</a> and ride bikes. I'm learning to sew my own clothes, and my French
is terrible.
2022-04-16 10:43:45 +00:00
</p>
<button on:click={() => (isPersonalExpanded = true)}>Oh, cool, tell me more</button>
{/if}
</section>
<section class="section links">
<h2>Links</h2>
<ul>
<li>I write here, <a href="/blog">on my blog</a></li>
<li>I'm on <a href="https://www.twitter.com/tjwilson92">Twitter</a></li>
<li>And on <a href="https://www.github.com/thomaswilsonxyz">GitHub</a></li>
</ul>
</section>
</main>
<style>
section {
--link-transition: 0.2s;
--link-padding: 4px;
--link-border-radius: 8px;
}
section ul {
margin-top: 0;
margin-bottom: 0;
}
section p {
padding-bottom: var(--spacing-md);
}
.strapline p {
padding-top: 4px;
padding-bottom: 1rem;
color: var(--gray-700);
}
.oxwash {
padding: var(--link-padding);
transition: var(--link-transition);
border-radius: var(--link-border-radius);
border: 1px solid #0256f2;
color: #0256f2;
text-decoration: none;
2022-04-16 10:43:45 +00:00
}
.oxwash:hover {
background: #6fbbec;
border: 1px solid #6fbbec;
text-decoration: underline;
color: white;
2022-04-16 10:43:45 +00:00
}
.figma {
padding: var(--link-padding);
transition: var(--link-transition);
border-radius: var(--link-border-radius);
border: 1px solid #c7b9ff;
2022-04-16 10:43:45 +00:00
color: #000000;
text-decoration: none;
2022-04-16 10:43:45 +00:00
}
.figma:hover {
background: #c7b9ff;
2022-04-16 10:43:45 +00:00
color: #000000;
text-decoration: underline;
2022-04-16 10:43:45 +00:00
}
.thesis {
padding: var(--link-padding);
transition: var(--link-transition);
border-radius: var(--link-border-radius);
border: 1px solid var(--brand-orange);
color: var(--brand-orange);
2022-04-26 06:26:26 +00:00
text-decoration: none;
2022-04-16 10:43:45 +00:00
}
.thesis:hover {
background: var(--brand-orange);
color: white;
2022-04-26 06:26:26 +00:00
text-decoration: underline;
2022-04-16 10:43:45 +00:00
}
.links a {
color: var(--brand-orange);
}
h1 {
font-size: 2.5rem;
}
h2 {
font-family: var(--font-family-title);
color: var(--gray-800);
}
li {
padding-bottom: 0.3rem;
}
</style>