File size: 1,218 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
import {React,useState} from "react";
import "./home.css";
import Delivery from "../imgs/delivery.png";
import Popular from "./Category/Popular";
import Navbar from './Navbar'
function Home() {
const [scrollPosition, setScrollPosition] = useState(0);
document.title = "Amazon"
const handleScroll = () => {
window.scrollTo({
top: scrollPosition + 750,
behavior: "smooth"
});
setScrollPosition(scrollPosition + 750);
setTimeout(() => {
setScrollPosition(0);
}, 100);
};
return (
<>
<Navbar/>
<div className="content">
<div className="poster-area">
<div className="poster-data">
<p className="poster-head">Free Delivery!</p>
<p className="poster-desc">
Don't miss it out! Only today, get free{" "}
<b style={{ fontSize: "22px" }}>Next Day</b> delivery on all
your orders.
</p>
</div>
<button onClick={handleScroll} className="browse-btn">Browse products</button>
</div>
<img src={Delivery} className="delivery" />
<Popular />
</div>
</>
);
}
export default Home;
|