No typing for script import
Some checks failed
Build and Test - Staging / determine_version (pull_request) Successful in 27s
Playwright Tests / test (pull_request) Failing after 2m21s
Build and Test - Staging / build_and_push (pull_request) Successful in 2m13s
Build and Test - Staging / test (pull_request) Successful in 2s
Build and Test - Staging / deploy_staging (pull_request) Successful in 6s

This commit is contained in:
2025-11-06 23:40:38 -08:00
parent 33388f59ee
commit 7fe9303d5e
2 changed files with 4 additions and 3 deletions

View File

@@ -14,7 +14,7 @@ const pageTitle = Astro.props.title ? `${Astro.props.title} - Corwin Perren` : "
<meta name="viewport" content="width=device-width, initial-scale=1.0"/> <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>{pageTitle}</title> <title>{pageTitle}</title>
<script is:inline type="module" src="/src/scripts/main.js"></script> <script src="/src/scripts/main.js"></script>
</head> </head>
<body class="bg-black text-white"> <body class="bg-black text-white">

View File

@@ -6,10 +6,11 @@ import Table from "@components/Table.astro";
import type {carouselGroup} from "@interfaces/image-carousel.ts"; import type {carouselGroup} from "@interfaces/image-carousel.ts";
import type {tableData} from "@interfaces/table.ts"; import type {tableData} from "@interfaces/table.ts";
import type {timelineEntry} from "@interfaces/timeline.ts";
import fhhs_diploma from "@assets/education/fhhs-diploma.jpg"; import fhhs_diploma from "@assets/education/fhhs-diploma.jpg";
import osu_bs_cs_diploma from "@assets/education/osu-bs-cs-diploma.jpg" import osu_bs_cs_diploma from "@assets/education/osu-bs-cs-diploma.jpg"
import type {timelineEntry} from "@interfaces/timeline.ts";
const diplomaCarouselGroup: carouselGroup = { const diplomaCarouselGroup: carouselGroup = {
animation: "slide", animation: "slide",
@@ -104,7 +105,7 @@ const courseTable: tableData = {
] ]
}; };
--- ---
<BaseLayout> <BaseLayout title="Education">
<Carousel carouselGroup={diplomaCarouselGroup}/> <Carousel carouselGroup={diplomaCarouselGroup}/>
<h2 class="font-bold md:text-2xl my-4 underline">Timeline</h2> <h2 class="font-bold md:text-2xl my-4 underline">Timeline</h2>
<Timeline timeline={timeline}/> <Timeline timeline={timeline}/>