diff --git a/src/components/layout/home/BoxDeal/CounDown.tsx b/src/components/layout/home/BoxDeal/CounDown.tsx
new file mode 100644
index 0000000..e3aa8c6
--- /dev/null
+++ b/src/components/layout/home/BoxDeal/CounDown.tsx
@@ -0,0 +1,57 @@
+'use client';
+import React, { useState, useEffect } from 'react';
+
+const CounDown: React.FC = () => {
+ const [days, setDays] = useState(0);
+ const [hours, setHours] = useState(0);
+ const [minutes, setMinutes] = useState(0);
+ const [seconds, setSeconds] = useState(0);
+
+ const deadline: Date = new globalThis.Date('2025-12-31');
+
+ const getTime = () => {
+ const time = deadline.getTime() - Date.now();
+
+ setDays(Math.floor(time / (1000 * 60 * 60 * 24)));
+ setHours(Math.floor((time / (1000 * 60 * 60)) % 24));
+ setMinutes(Math.floor((time / 1000 / 60) % 60));
+ setSeconds(Math.floor((time / 1000) % 60));
+ };
+
+ useEffect(() => {
+ const interval = setInterval(() => getTime(), 1000);
+
+ return () => clearInterval(interval);
+ }, []);
+
+ return (
+ <>
+
+
+
{days < 10 ? '0' + days : days}
:
+
+
Ngày
+
+
+
+
{hours < 10 ? '0' + hours : hours}
:
+
+
Giờ
+
+
+
+
{minutes < 10 ? '0' + minutes : minutes}
:
+
+
Phút
+
+
+
+
{seconds < 10 ? '0' + seconds : seconds}
+
+
Giây
+
+ >
+ );
+};
+
+export default CounDown;
diff --git a/src/components/layout/home/BoxDeal/BoxProductDeal.tsx b/src/components/layout/home/BoxDeal/index.tsx
similarity index 93%
rename from src/components/layout/home/BoxDeal/BoxProductDeal.tsx
rename to src/components/layout/home/BoxDeal/index.tsx
index 6ff7fe3..520687f 100644
--- a/src/components/layout/home/BoxDeal/BoxProductDeal.tsx
+++ b/src/components/layout/home/BoxDeal/index.tsx
@@ -3,6 +3,7 @@ import React from 'react';
import { Swiper, SwiperSlide } from 'swiper/react';
import { Autoplay, Navigation, Pagination } from 'swiper/modules';
import { FaCaretRight } from 'react-icons/fa';
+import CounDown from './CounDown';
const BoxProductDeal: React.FC = () => {
return (
@@ -12,7 +13,9 @@ const BoxProductDeal: React.FC = () => {
Giá tốt mỗi ngày
Kết thúc sau
-
+
+
+
Xem thêm khuyến mãi
diff --git a/src/components/layout/home/bannerData.ts b/src/components/layout/home/SliderHome/bannerData.ts
similarity index 100%
rename from src/components/layout/home/bannerData.ts
rename to src/components/layout/home/SliderHome/bannerData.ts
diff --git a/src/components/layout/home/SliderHome.tsx b/src/components/layout/home/SliderHome/index.tsx
similarity index 100%
rename from src/components/layout/home/SliderHome.tsx
rename to src/components/layout/home/SliderHome/index.tsx
diff --git a/src/components/layout/home/index.tsx b/src/components/layout/home/index.tsx
index 5d0a1d7..a48a476 100644
--- a/src/components/layout/home/index.tsx
+++ b/src/components/layout/home/index.tsx
@@ -1,6 +1,6 @@
import React from 'react';
import SliderHome from './SliderHome';
-import BoxProductDeal from './BoxDeal/BoxProductDeal';
+import BoxProductDeal from './BoxDeal';
const Home = () => {
return (
diff --git a/src/styles/globals.css b/src/styles/globals.css
index bde4744..4a390ee 100644
--- a/src/styles/globals.css
+++ b/src/styles/globals.css
@@ -2230,7 +2230,6 @@ textarea::placeholder {
color: #cb1c21;
border-radius: 3px;
background: #fff;
- padding: 8px;
font-size: 16px;
width: 32px;
height: 28px;