diff --git a/src/components/meme/countdown.tsx b/src/components/meme/countdown.tsx index cf8664fe9..1a54f813b 100644 --- a/src/components/meme/countdown.tsx +++ b/src/components/meme/countdown.tsx @@ -20,8 +20,12 @@ const Countdown = ({ onCountdownFinish }) => { const [countdownFinished, setCountdownFinished] = useState(false); const is_mobile = isMobile(); useEffect(() => { - const targetDate = new Date(Date.UTC(new Date().getUTCFullYear(), 8, 1)); - const endDate = new Date(Date.UTC(new Date().getUTCFullYear(), 8, 5)); + const targetDate = new Date( + Date.UTC(new Date().getUTCFullYear(), 9, 1, 0, 0, 0) + ); + const endDate = new Date( + Date.UTC(new Date().getUTCFullYear(), 9, 5, 0, 0, 0) + ); const updateCountdown = () => { const nowUtc = Date.now(); if (nowUtc >= endDate.getTime()) { diff --git a/src/components/meme/icons.tsx b/src/components/meme/icons.tsx index 03268ea97..78aea5775 100644 --- a/src/components/meme/icons.tsx +++ b/src/components/meme/icons.tsx @@ -1375,183 +1375,153 @@ export function CountdownLeftBg(props: any) { xmlnsXlink="http://www.w3.org/1999/xlink" > - - - - - - - + + + + + + - - - - - - @@ -1559,11 +1529,11 @@ export function CountdownLeftBg(props: any) { @@ -1571,10 +1541,10 @@ export function CountdownLeftBg(props: any) { @@ -1582,10 +1552,10 @@ export function CountdownLeftBg(props: any) { @@ -1593,7 +1563,7 @@ export function CountdownLeftBg(props: any) { - - - - - - + + + + + - - - - - - - + - - - + + + - - - + + + - - + + + ); } export function CountdownFinishMobile(props: any) { return ( - + ); }