diff --git a/CountDownTimer/jashkarangiya/README.md b/CountDownTimer/jashkarangiya/README.md
deleted file mode 100644
index aad5f55fc..000000000
--- a/CountDownTimer/jashkarangiya/README.md
+++ /dev/null
@@ -1,8 +0,0 @@
-# Count Down Timer
-- The project is a simple count-down timer which runs till a specific time given in the code.
-- This specific timer runs till next hacktober fest!!
-
-### Built using:
-- HTML
-- CSS
-- JS
diff --git a/CountDownTimer/jashkarangiya/css/custom.css b/CountDownTimer/jashkarangiya/css/custom.css
deleted file mode 100644
index 86197e815..000000000
--- a/CountDownTimer/jashkarangiya/css/custom.css
+++ /dev/null
@@ -1,56 +0,0 @@
-* {
- padding: 0;
- margin: 0;
- box-sizing: border-box;
-}
-
-@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap');
-.main {
- width: 100%;
- height: 100vh;
- background: url(../image/sunset-1373171_960_720.webp) center center;
- background-size: cover;
-}
-
-.overlay {
- width: 100%;
- height: 100%;
- background-color: rgba(0, 0, 0, 0.5);
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- font-family: 'Poppins', sans-serif;
-}
-
-.title {
- margin: 10px;
- color: rgb(255, 255, 255);
- font-size: 2.5rem;
- text-align: center;
-}
-
-.column {
- width: 1000px;
- display: flex;
- justify-content: center;
- color: white;
- /* margin: 10px auto; */
-}
-
-.column div {
- width: 250px;
- text-align: center;
-}
-
-input {
- font-family: 'Poppins', sans-serif;
- font-size: 25px;
- background-color: rgba(255, 255, 255, 0.7);
- border-color: transparent;
- margin-top: 20px;
- border-radius: 12px;
- height: 50px;
- width: 60%;
- text-align: center;
-}
\ No newline at end of file
diff --git a/CountDownTimer/jashkarangiya/image/1802071.webp b/CountDownTimer/jashkarangiya/image/1802071.webp
deleted file mode 100644
index 8bf02923e..000000000
Binary files a/CountDownTimer/jashkarangiya/image/1802071.webp and /dev/null differ
diff --git a/CountDownTimer/jashkarangiya/image/18304.png b/CountDownTimer/jashkarangiya/image/18304.png
deleted file mode 100644
index bd25e33bf..000000000
Binary files a/CountDownTimer/jashkarangiya/image/18304.png and /dev/null differ
diff --git a/CountDownTimer/jashkarangiya/image/download.png b/CountDownTimer/jashkarangiya/image/download.png
deleted file mode 100644
index 0abe3b8f5..000000000
Binary files a/CountDownTimer/jashkarangiya/image/download.png and /dev/null differ
diff --git a/CountDownTimer/jashkarangiya/image/icon-04-timer-icon-11553476391xppig4pxyh.png b/CountDownTimer/jashkarangiya/image/icon-04-timer-icon-11553476391xppig4pxyh.png
deleted file mode 100644
index 258078a3b..000000000
Binary files a/CountDownTimer/jashkarangiya/image/icon-04-timer-icon-11553476391xppig4pxyh.png and /dev/null differ
diff --git a/CountDownTimer/jashkarangiya/image/sunset-1373171_960_720.webp b/CountDownTimer/jashkarangiya/image/sunset-1373171_960_720.webp
deleted file mode 100644
index b378ab8cd..000000000
Binary files a/CountDownTimer/jashkarangiya/image/sunset-1373171_960_720.webp and /dev/null differ
diff --git a/CountDownTimer/jashkarangiya/image/tree-736885__340.jpg b/CountDownTimer/jashkarangiya/image/tree-736885__340.jpg
deleted file mode 100644
index 802475acb..000000000
Binary files a/CountDownTimer/jashkarangiya/image/tree-736885__340.jpg and /dev/null differ
diff --git a/CountDownTimer/jashkarangiya/index.html b/CountDownTimer/jashkarangiya/index.html
deleted file mode 100644
index 2ec00e436..000000000
--- a/CountDownTimer/jashkarangiya/index.html
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-
-
-
-
Next Hacktober Fest!!
-
01 October 2024 12:00 AM
-
-
-
-
-
-
\ No newline at end of file
diff --git a/CountDownTimer/jashkarangiya/js/app.js b/CountDownTimer/jashkarangiya/js/app.js
deleted file mode 100644
index a3fab583f..000000000
--- a/CountDownTimer/jashkarangiya/js/app.js
+++ /dev/null
@@ -1,35 +0,0 @@
-const endDate = "01 October 2024 12:00 AM"
-
-
-document.getElementById("end-date").innerText = endDate;
-const inputs = document.querySelectorAll("input");
-
-
-
-
-const clock = () => {
- const end = new Date(endDate);
- const now = new Date();
- const diffTime = Math.abs(end - now);
-
- if (diffTime < 0) {
- return;
- }
-
- inputs[0].value = Math.ceil(diffTime / (1000 * 60 * 60 * 24));
- inputs[1].value = Math.ceil(diffTime / (1000 * 60 * 60)) % 24;
- inputs[2].value = Math.ceil(diffTime / (1000 * 60)) % 60;
- inputs[3].value = Math.ceil(diffTime / (1000)) % 60;
-
-
- // console.log(diffDays + " days");
-}
-
-
-clock();
-
-setInterval(
- () => {
- clock()
- },
- 1000)
\ No newline at end of file