Front page

This commit is contained in:
2020-07-19 20:45:24 +02:00
parent a71a2a7a60
commit 29efa13410
23 changed files with 1099 additions and 93 deletions

15
src/components/TopBar.js Normal file
View File

@@ -0,0 +1,15 @@
import React from "react";
import ButtonSecondary from "./ButtonSecondary";
import logo from "../public/logo_mint.svg";
export default function TopBar() {
return (
<div className="topBar">
<img src={logo} className="topBarLogo" alt="Menui logo" />
<div>
<ButtonSecondary text="Dodaj Lokal" />
<ButtonSecondary text="Logowanie" />
</div>
</div>
);
}