Skip to content

Commit cdd14c9

Browse files
committed
Enhance CountdownTimer layout with improved structure and add high voltage emoji
1 parent bad0b70 commit cdd14c9

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

src/Page/Home.jsx

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,18 @@ const CountdownTimer = () => {
3939

4040
return (
4141
<div className="my-4 text-center">
42-
<h2 className="custom-font text-1xl inline-block font-bold text-[#00a6fb]">v2.0 Dropping Soon 🗲</h2>{' '}
43-
<p className="custom-font text-1xl inline-block text-gray-300">{timeLeft}</p>
42+
<div className="flex items-center gap-2">
43+
<h2 className="custom-font text-1xl flex items-center gap-1 font-bold text-[#00a6fb]">
44+
v2.0 Dropping Soon
45+
<img
46+
src="https://raw.githubusercontent.com/Tarikul-Islam-Anik/Animated-Fluent-Emojis/master/Emojis/Travel%20and%20places/High%20Voltage.png"
47+
alt="High Voltage"
48+
width="25"
49+
height="25"
50+
/>
51+
</h2>
52+
<p className="custom-font text-1xl text-[#00a6fb]">{timeLeft}</p>
53+
</div>
4454
</div>
4555
);
4656
};

0 commit comments

Comments
 (0)