1
0
mirror of https://github.com/covidpass-org/covidpass.git synced 2025-02-17 12:10:45 +01:00
2021-06-25 12:18:25 +02:00

14 lines
274 B
JavaScript

import Icon from '../public/favicon.svg'
export default Logo
function Logo() {
return (
<div className="flex flex-row items-center p-3 justify-center space-x-1" >
<Icon />
<h1 className="text-3xl font-bold">
CovidPass
</h1>
</div>
)
}