You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
491 B
14 lines
491 B
import React from "react"; |
|
|
|
function Header({ bg, title }) { |
|
return ( |
|
<div className="w-full flex flex-col items-center justify-end bg-blueFD1 transform -translate-y-16 dark:bg-opacity-5" style={{ height : '29%', minHeight : 180}}> |
|
<img src={bg} alt="" className="w-4/5 h-3/4 absolute left-1/5" /> |
|
<h1 className="text-lg text-blueC0 absolute left-1/2 transform -translate-x-1/2 bottom-4 font-semibold"> |
|
{title} |
|
</h1> |
|
</div> |
|
); |
|
} |
|
|
|
export default Header;
|
|
|