Files
pfadi-bussle/components/header.tsx
2020-10-09 00:10:56 +02:00

15 lines
373 B
TypeScript

import React from 'react'
export default function Header({
label = 'Pfadi Bussle Buchen',
}: {
label?: string
}) {
return (
<div className="flex flex-row items-center p-3 my-3 text-white bg-gray-600 rounded-sm">
<h1 className="flex-grow text-3xl">{label}</h1>
<img src="/logo.webp" className="w-40 mx-3 object-contain object-top" />
</div>
)
}