Skip to content

Commit

Permalink
Update music
Browse files Browse the repository at this point in the history
  • Loading branch information
Quantumplation committed Dec 3, 2024
1 parent 46f0111 commit 82486b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Binary file added src/assets/music/doom-newm.mp3
Binary file not shown.
8 changes: 2 additions & 6 deletions src/components/MusicPlayer/MusicPlayer.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,9 @@
import React, { useState, useEffect, useRef } from "react";
import { IoMdVolumeHigh, IoMdVolumeOff } from "react-icons/io";

import song1 from "../../assets/music/blue-screen-of-death.mp3";
import song2 from "../../assets/music/demons-prowl.mp3";
import song3 from "../../assets/music/dooms-fate.mp3";
import song4 from "../../assets/music/mark-of-malice.mp3";
import song5 from "../../assets/music/unnamed.mp3";
import song1 from "../../assets/music/doom-newm.mp3";

const files = [song1, song2, song3, song4, song5];
const files = [song1];

const MusicPlayer: React.FC = () => {
const [isPlaying, setIsPlaying] = useState<boolean>(false);
Expand Down

0 comments on commit 82486b2

Please sign in to comment.