diff --git a/src/components/Controls.astro b/src/components/Controls.astro
index 553ea30..76145ba 100644
--- a/src/components/Controls.astro
+++ b/src/components/Controls.astro
@@ -79,7 +79,7 @@ import "./controls.css";
const volumeControls = document.querySelectorAll("#range");
volumeControls.forEach((volumeControl) => {
- var volume;
+ var volume: number;
volumeControl.addEventListener("input", () => {
volume = parseFloat(volumeControl.value);
players.forEach((ytplayer) => {
diff --git a/src/components/Creds.astro b/src/components/Creds.astro
index 8592c57..d65e343 100644
--- a/src/components/Creds.astro
+++ b/src/components/Creds.astro
@@ -12,12 +12,12 @@ import Button from "./Button.astro";
target="_blank"
/>
-
+
@@ -25,7 +25,14 @@ import Button from "./Button.astro";
href="https://github.com/cjlaserna/nookoffice"
target="_blank"
>
- @clasernaj
+
+ / patch by
+ @VijiatJack
diff --git a/src/components/timer/Timer.astro b/src/components/timer/Timer.astro
index 0bd859f..62cb371 100644
--- a/src/components/timer/Timer.astro
+++ b/src/components/timer/Timer.astro
@@ -32,7 +32,7 @@ import "./timer.css";
-
+
diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro
index c40fb8a..9e50958 100644
--- a/src/layouts/Layout.astro
+++ b/src/layouts/Layout.astro
@@ -12,7 +12,7 @@ const { title } = Astro.props;
-
+
@@ -102,7 +102,7 @@ const { title } = Astro.props;
}
body {
background-color: #f6f6f6;
- background-image: url("/animalcrossing_pattern.jpg");
+ background-image: url("/nookoffice/animalcrossing_pattern.jpg");
background-repeat: repeat-x;
background-position: center;
background-size: cover;
@@ -117,14 +117,14 @@ const { title } = Astro.props;
@font-face {
font-family: "Arial Rounded MT";
- src: url("/Arial_Rounded_MT.ttf") format("truetype");
+ src: url("/nookoffice/Arial_Rounded_MT.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: "Arial Rounded MT Bold";
- src: url("/arialmtbold.ttf") format("truetype");
+ src: url("/nookoffice/arialmtbold.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}