create & style basic banner component

This commit is contained in:
2022-05-07 01:12:50 +02:00
parent 07a60dc8b5
commit 66e92fd8fd
3 changed files with 40 additions and 0 deletions

11
components/Banner.js Normal file
View File

@@ -0,0 +1,11 @@
export default function Banner() {
return (
<>
<section className="banner">
<div />
<h1>Dzień dobry.</h1>
<p>Tutaj znajdzie się banner ze zdjęciem.</p>
</section>
</>
);
}