Skip to content

Commit

Permalink
馃毀 fix: testing changed route of static files
Browse files Browse the repository at this point in the history
  • Loading branch information
bytevictor committed Mar 28, 2024
1 parent dc72e6e commit c0663c1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/Components/TasksApp/TaskList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ function Task({
const playSoundCheck = () => {
console.log("Playing sound");

const audio = new Audio("/sounds/[Original] completedTaskSound.mp3");
const audio = new Audio("./sounds/[Original] completedTaskSound.mp3");
audio.play();
};

Expand Down
7 changes: 5 additions & 2 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@ import "./globals.css";
const inter = Inter({ subsets: ["latin"] });

export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "SimpleTask",
description: "A simple, fast and light task manager. Created by bytevictor.",
icons: {
icon: './favicon.png',
},
};

export default function RootLayout({
Expand Down

0 comments on commit c0663c1

Please sign in to comment.