Removed unused build, refactored H1-3 to use slot based setup, added visual and aria page highlighting for navbar links, switched all pages to use custom H1-3, better new page/tab handling for inline links
All checks were successful
Build and Test - Staging / test (pull_request) Successful in 4m29s
Build and Test - Staging / build_and_push (pull_request) Successful in 4m59s
Build and Test - Staging / deploy_staging (pull_request) Successful in 3s

This commit is contained in:
2025-12-05 14:17:12 -08:00
parent f9a837f0fa
commit 4b5f65bfdd
18 changed files with 248 additions and 224 deletions

View File

@@ -1,8 +1,12 @@
---
import BaseLayout from "@layouts/BaseLayout.astro";
import H2 from "@components/H2.astro";
import H3 from "@components/H3.astro";
import InlineLink from "@components/InlineLink.astro";
import Carousel from "@components/Media/CustomCarousel/CustomCarousel.astro";
import Table from "@components/Table.astro";
import Timeline from "@components/Timeline/Timeline.astro";
import BaseLayout from "@layouts/BaseLayout.astro";
import type { carouselGroup } from "@interfaces/image-carousel.ts";
import type { tableData } from "@interfaces/table.ts";
@@ -104,14 +108,16 @@ const courseTable: tableData = {
<BaseLayout title="Education">
<Carousel carouselGroup={diplomaCarouselGroup} />
<h2 class="my-4 font-bold underline md:text-2xl">Timeline</h2>
<H2>Timeline</H2>
<Timeline timeline={timeline} />
<h2 class="my-4 font-bold underline md:text-2xl">Oregon State University</h2>
<a
class="my-4 font-bold text-blue-500 underline hover:text-blue-300 md:text-lg"
href="https://github.com/caperren/school_archives/tree/master/OSU%20Coursework"
>Coursework Archives</a
>
<h3 class="my-4 font-bold underline md:text-lg">Course Listing</h3>
<H2>Oregon State University</H2>
<H3>
<InlineLink
class="font-bold md:text-lg"
href="https://github.com/caperren/school_archives/tree/master/OSU%20Coursework"
>Coursework Archives</InlineLink
>
</H3>
<H3>Course Listing</H3>
<Table data={courseTable} />
</BaseLayout>