Seemingly ready for release

This commit is contained in:
Henry Hiles 2023-04-21 10:39:20 -04:00
parent 06dd7cdc46
commit 7b39416dc9
6 changed files with 51 additions and 36 deletions

View file

@ -9,11 +9,7 @@ import Divider from "./Divider.astro"
<div class={styles.row}>
<article>
<img
src={`https://raw.githubusercontent.com/Henry-Hiles/github-stats/master/generated/overview.svg${
false // TODO: add light mode again
? "#gh-light-mode-only"
: "#gh-dark-mode-only"
}`}
src={`https://raw.githubusercontent.com/Henry-Hiles/github-stats/master/generated/overview.svg#gh-dark-mode-only`}
alt="My Github Stats"
/>
</article>
@ -45,7 +41,7 @@ import Divider from "./Divider.astro"
rel="noreferrer"
>
<img
src="/images/az-900.png"
src="/images/ai-900.png"
alt="Azure AI Fundamentals Badge"
/>
</a>
@ -55,7 +51,7 @@ import Divider from "./Divider.astro"
rel="noreferrer"
>
<img
src="/images/az-900.png"
src="/images/dp-900.png"
alt="Azure Data Fundamentals Badge"
/>
</a>

View file

@ -1,13 +1,12 @@
---
import RoundDivider from "./RoundDivider.astro"
import RoundDivider from "./RoundDivider.astro"
import styles from "../styles/Jumbo.module.css"
import Divider from "./Divider.astro"
import Divider from "./Divider.astro"
---
<header>
<section id={styles.jumbo}>
<h1>
<img src="images/logo.png" alt="Henry Hiles" />
</h1>
<h1>Henry Hiles</h1>
<Divider />
<span id={styles.shortAbout}>
Full Stack .NET Developer & Discord Bot Developer

View file

@ -3,8 +3,7 @@ import { Icon } from "astro-icon"
import styles from "../styles/Nav.module.css"
---
<!-- export const Nav = ({ lightTheme, setLightTheme }) => { --><!-- class={y == 0 ? "" : styles.navbarShrink} -->
<nav class={styles.nav} data-expanded="true">
<nav class={styles.nav} aria-expanded="true">
<ul class={styles.links}>
<li>
<a href="/#">Home</a>
@ -16,10 +15,10 @@ import styles from "../styles/Nav.module.css"
<a href="/#about">About Me</a>
</li>
<li>
<button id="themeToggle">
<Icon name="ph:sun-fill" />
<!-- <Icon name="ph:moon-fill" /> -->
</button>
<div id="themeToggle">
<div aria-hidden="false"><Icon name="ph:sun-fill" /></div>
<div aria-hidden="true"><Icon name="ph:moon-fill" /></div>
</div>
</li>
<li>
<a
@ -31,18 +30,35 @@ import styles from "../styles/Nav.module.css"
</a>
</li>
</ul>
</nav>
<script defer>
const dataset = document.querySelector(`nav`)?.dataset
document.addEventListener("scroll", () => {
if (dataset) {
if (window.scrollY > 0) dataset.expanded = false
else dataset.expanded = true
<script defer>
let nav = document.querySelector(`nav`)
document.addEventListener("scroll", () => {
if (nav) nav.setAttribute("aria-expanded", window.scrollY == 0)
})
const body = document.querySelector("body")
const themeToggle = document.querySelector("#themeToggle")
const icons = document.querySelectorAll("#themeToggle > div")
let lightMode = localStorage.getItem("lightMode") === "true" || false
const setLightMode = () => {
localStorage.setItem("lightMode", lightMode)
if (lightMode) body.classList.add("light")
else body.classList.remove("light")
icons[0].setAttribute("aria-hidden", !lightMode)
icons[1].setAttribute("aria-hidden", lightMode)
icons.forEach((icon) =>
icon.setAttribute(
"aria-hidden",
icon.getAttribute("aria-hidden") === "false"
)
)
}
})
setLightMode()
const body = document.querySelector("body")
const themeToggle = document.querySelector("#themeToggle")
themeToggle.addEventListener("click", () => body.classList.toggle("light"))
</script>
themeToggle.addEventListener("click", () => {
lightMode = !lightMode
setLightMode()
})
</script>
</nav>

View file

@ -10,7 +10,7 @@ import Divider from "./Divider.astro"
<article class={styles.portfolioItems}>
{
projects.map((project, index) => (
<a href={`/projects/${index}#`}>
<a href={`/projects/${index}`}>
<img
src={`/images/${project.thumbImage}`}
alt={project.name}

View file

@ -8,8 +8,8 @@ import Layout from "../layouts/Layout.astro"
<h1 id={styles.header}>Page not found.</h1>
<span id={styles.description}>
We couldn't find that page. Please{" "}
<a href="javascript:window.history.go(-1)"> go back</a>
, or return to our <a href="/">home page</a>.
<a href="javascript:window.history.go(-1)"> go back</a>, or return
to our <a href="/">home page</a>.
</span>
</div>
</Layout>

View file

@ -13,8 +13,12 @@
gap: 20px;
}
.nav [aria-hidden="true"] {
display: none;
}
@media (min-width: 600px) {
.nav[data-expanded="false"] {
.nav[aria-expanded="false"] {
padding: 1rem;
width: unset;
top: 10px;
@ -23,7 +27,7 @@
padding: 0;
}
.nav[data-expanded="true"] {
.nav[aria-expanded="true"] {
font-size: 1.5em;
}