Skip to content

Commit

Permalink
Update HeroSection.js
Browse files Browse the repository at this point in the history
  • Loading branch information
parteekcoder committed Jan 17, 2024
1 parent 9f81523 commit 9856b87
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Hero/HeroSection.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@ import heroText from "../../../public/images/HeroText.svg";
import linkArrow from "../../../public/images/LinkArrow.svg";
import regButton from "../../../public/images/RegisterButton.svg";
import regButtonHover from "../../../public/images/RegisterButtonHover.svg";
import HeroSectionImg from "../../../public/images/HeroSection.svg"

function HeroSection() {
const [isHovered, setIsHovered] = useState(false);

return (
<div
className="relative w-full h-[1972px] bg-cover overflow-y-auto"
style={{ backgroundImage: "url('/images/HeroSection.svg')" }}
style={{ backgroundImage: `url(${HeroSectionImg.src})` }}
>
<div className="flex flex-col justify-center items-center relative top-[6rem]">
<div className="flex relative py-8">
Expand Down

0 comments on commit 9856b87

Please sign in to comment.