-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c89b13b
commit 2c39c40
Showing
6 changed files
with
145 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<div id="puddle-container"></div> | ||
|
||
<section class="hero"> | ||
<h1>Vale</h1> | ||
<div class="hero-titles"> | ||
<p>Developer</p> | ||
<p>Designer</p> | ||
<p>Dabbler</p> | ||
</div> | ||
</section> | ||
|
||
<div class="content"> | ||
<section class="about"> | ||
<h2>Ahoy!</h2> | ||
<p> | ||
I'm Declan Chidlow, a passionate front-end developer. I like to believe I've got an eye for aesthetics, and I've most definitely got a love for learning. My ultimate aspiration is to create | ||
digital experiences that are both functional and visually appealing. | ||
</p> | ||
<p> | ||
When I'm not bodging together some script or reinventing the wheel, you might find me cruising around on my unicycle. Alternatively, you may find me writing up some form of article for this very | ||
website, doing some gaming, inadvertently converting an otherwise functional piece of tech into a paperweight, or browsing the crevices of cyberspace. | ||
</p> | ||
<p> | ||
Apart from being a home for <a href="/posts">my thoughts and musings</a>, this website acts as a gateway to all sorts of horrific abominations I concoct. Some of them won't even cause internal | ||
haemorrhaging. | ||
</p> | ||
</section> | ||
|
||
<a href="/posts" class="cta-link"> | ||
<h2>Read my writings<span aria-hidden="true"> →</span></h2> | ||
</a> | ||
|
||
<a href="/portfolio" class="cta-link"> | ||
<h2>Peruse my portfolio<span aria-hidden="true"> →</span></h2> | ||
</a> | ||
|
||
<a href="/contact" class="cta-link"> | ||
<h2>Get in contact<span aria-hidden="true"> →</span></h2> | ||
</a> | ||
</div> | ||
|
||
<script> | ||
if (!window.matchMedia("(prefers-reduced-motion: reduce)").matches) { | ||
const script = document.createElement("script"); | ||
script.src = "/scripts/puddle.js"; | ||
script.onload = function () { | ||
const puddle = new Puddle("#puddle-container"); | ||
puddle.setNodeStyle("ascii"); | ||
}; | ||
document.body.appendChild(script); | ||
} | ||
</script> |
This file was deleted.
Oops, something went wrong.