Skip to content

Commit

Permalink
Merge pull request #51 from acm-ucr/Fuyuki/Project-Header
Browse files Browse the repository at this point in the history
Added Project Header
  • Loading branch information
menthy-wu authored Nov 4, 2023
2 parents 1dc4f97 + 34a29af commit 4dd0d0c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/components/projects/Header.jsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
import Title from "../Title";

const Header = ({ img, title }) => {
return <div>Header</div>;
return (
<div>
<img src={img} alt="Image" className="mb-2.5 w-full" />
<Title subTitle="" title={title} />
</div>
);
};

export default Header;

0 comments on commit 4dd0d0c

Please sign in to comment.