Skip to content

Commit

Permalink
Fixing References
Browse files Browse the repository at this point in the history
  • Loading branch information
Jackson Melo committed Dec 13, 2023
1 parent 2ba029b commit a15758a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/components/Controls.astro
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
Expand Down
13 changes: 10 additions & 3 deletions src/components/Creds.astro
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,27 @@ import Button from "./Button.astro";
target="_blank"
/>
<Button
url="https://twitter.com/intent/tweet?url=https%3A%2F%2Fwww.nookoffice.live&text=Staying%20on%20top%20of%20my%20work%20w/%20Animal%20Crossing%20music%20%3A%29"
url="https://twitter.com/intent/tweet?url=https://vijiatjack.github.io/nookoffice/&text=Staying%20on%20top%20of%20my%20work%20w/%20Animal%20Crossing%20music%20%3A%29"
value="Share"
icon="gg-share"
target="_blank"
/>
<Button url="/?embed=true" value="Embed" icon="gg-git-branch" target="" />
<Button url="/nookoffice/?embed=true" value="Embed" icon="gg-git-branch" target="" />
</div>
<div class="txt">
<p>
developed by <a
href="https://github.com/cjlaserna/nookoffice"
target="_blank"
>
@clasernaj</a
@cjlaserna</a
>

/ patch by <a
href="https://github.com/VijiatJack/nookoffice"
target="_blank"
>
@VijiatJack</a
>
</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/timer/Timer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import "./timer.css";
<option value="15">15 Minutes</option>
<option value="30">30 Minutes</option>
</select>
<audio src="/timer.wav" id="soundCue"></audio>
<audio src="/nookoffice/timer.wav" id="soundCue"></audio>
</div>
</div>

Expand Down
8 changes: 4 additions & 4 deletions src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const { title } = Astro.props;
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link href="https://css.gg/css" rel="stylesheet" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" type="image/svg+xml" href="/nookoffice/favicon.svg" />
<link rel="canonical" href="https://vijiatjack.github.io/nookoffice/" />

<!-- Primary Meta Tags -->
Expand Down Expand Up @@ -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;
Expand All @@ -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;
}
Expand Down

0 comments on commit a15758a

Please sign in to comment.