Skip to content

Commit f2d0409

Browse files
committed
Fix target date in CountdownTimer component and comment out unused import
1 parent 7573184 commit f2d0409

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Page/Home.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import Navbar from '../components/Navbar';
44
import Globe from '../components/Globe';
55
import { Footer } from '../components/Footer/Footer';
66
import LOGO from './WordMark.png';
7-
import PoweredByDevDisplay from './PoweredByDevDisplay.png';
7+
// import PoweredByDevDisplay from './PoweredByDevDisplay.png';
88
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
99
import { faGithub } from '@fortawesome/free-brands-svg-icons';
1010
import Marquee from 'react-fast-marquee';
@@ -16,7 +16,7 @@ const CountdownTimer = () => {
1616
const [timeLeft, setTimeLeft] = useState('');
1717

1818
useEffect(() => {
19-
const targetDate = new Date('April 17, 2025 10:00:00').getTime();
19+
const targetDate = new Date('April 17, 2025 20:00:00').getTime();
2020

2121
const interval = setInterval(() => {
2222
const now = new Date().getTime();

0 commit comments

Comments
 (0)