first commit

This commit is contained in:
dev-chiefworks
2024-01-10 11:05:21 -05:00
commit 2ce13271d8
1398 changed files with 91003 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
import React from "react";
const FlashSaleBanner = () => {
return (
<div className="banner-bg row no-gutters" data-aos="fade-up">
<div className="col-lg-6 right-half position-relative order-lg-2">
<div className="fancy-text font-recoleta">45% Off</div>
<div className="sale-text">FLASH SALE</div>
<h3>
Summer hit <br /> collection sale go on...
</h3>
<p className="pt-20 pb-35">Event will be continue till 23 Aug</p>
<a href="#" className="shop-btn-two tran3s">
Shop Now
</a>
</div>
<div
className="col-lg-6 left-half position-relative order-lg-1"
style={{ background: "url(../images/media/img_125.jpg)" }}
></div>
</div>
);
};
export default FlashSaleBanner;