This commit is contained in:
2025-12-19 11:13:03 +07:00
parent a7488565fb
commit 47f154b326
13 changed files with 61 additions and 36 deletions

View File

@@ -0,0 +1,17 @@
import React from 'react';
import SliderHome from './SliderHome';
import BoxProductDeal from './BoxDeal/BoxProductDeal';
const Home = () => {
return (
<div className="page-hompage mt-4">
<div className="container">
{/* slider */}
<SliderHome />
{/* deal */}
<BoxProductDeal />
</div>
</div>
);
};
export default Home;