Compare commits
2 Commits
abf4575151
...
4668473293
Author | SHA1 | Date | |
---|---|---|---|
4668473293 | |||
0ad815d516 |
@ -4,7 +4,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<link rel="icon" type="image/svg+xml" href="/icon-512.png" />
|
||||
<meta name="generator" content={Astro.generator} />
|
||||
<title>thomaspcole.com | 404</title>
|
||||
|
||||
@ -25,22 +25,25 @@
|
||||
}
|
||||
</style>
|
||||
<script is:inline>
|
||||
if (localStorage.getItem("theme") === null) {
|
||||
document.documentElement.setAttribute("data-theme", "business");
|
||||
if (!('theme' in localStorage)) {
|
||||
localStorage.setItem("theme", "light")
|
||||
}
|
||||
|
||||
if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
|
||||
document.documentElement.classList.add('dark')
|
||||
} else {
|
||||
document.documentElement.setAttribute("data-theme", localStorage.getItem("theme"));
|
||||
document.documentElement.classList.remove('dark')
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body class="w-full h-screen">
|
||||
<div class="flex flex-col w-full h-screen text-center place-content-center">
|
||||
<body class="w-full h-screen bg-white dark:bg-gray-900">
|
||||
<div class="flex flex-col w-full h-screen text-center text-gray-900 place-content-center dark:text-white">
|
||||
<h1 class="text-5xl">Uh Oh!</h1>
|
||||
<p class="text-2xl">Sorry about that I can't seem to find what you are looking for.</p>
|
||||
<br>
|
||||
<a href="/" class="underline">Go Home</a>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
@ -1,7 +1,7 @@
|
||||
---
|
||||
layout: "../../../layouts/InteractiveDemoLayout.astro"
|
||||
title: "Pedal-pi"
|
||||
tagline: "A custom effects processor using MODEP"
|
||||
tagline: "A bass guitar custom effects processor using MODEP"
|
||||
date: "May 15, 2023"
|
||||
category: "Hardware"
|
||||
image: "https://images.unsplash.com/photo-1511203438670-49f8ea8441c6?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80"
|
||||
|
9
src/pages/projects/resume-json.mdx
Normal file
9
src/pages/projects/resume-json.mdx
Normal file
@ -0,0 +1,9 @@
|
||||
---
|
||||
layout: "../../layouts/InteractiveDemoLayout.astro"
|
||||
title: "I converted my resume to JSON"
|
||||
tagline: "...and it makes applying to jobs so much easier."
|
||||
date: "August 06, 2023"
|
||||
category: "Software"
|
||||
image: "https://images.unsplash.com/photo-1602407294553-6ac9170b3ed0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1548&q=80"
|
||||
imageattr: "https://unsplash.com/photos/4YzrcDNcRVg"
|
||||
---
|
Loading…
Reference in New Issue
Block a user