1
0
mirror of https://github.com/covidpass-org/covidpass.git synced 2025-02-18 04:30:53 +01:00
Hauke Tönjes c38718cb50
Design polish etc.
- dark Mode (media)
- responsive for larger screens
- logo and navigation on every page
- next/link in main navigation
2021-06-28 18:17:16 +02:00

17 lines
368 B
JavaScript

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