From fdff4e5f7c9ebe305802636e53773a0c8cdfb3c9 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Thu, 29 Oct 2020 21:11:47 +0100 Subject: [PATCH] use new Image component --- components/header.tsx | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) diff --git a/components/header.tsx b/components/header.tsx index 73e52d8..d48a3c4 100644 --- a/components/header.tsx +++ b/components/header.tsx @@ -1,11 +1,19 @@ import React from 'react' import Link from 'next/link' +import Image from 'next/image' export default function Header({ label = 'Pfadi Bussle' }: { label?: string }) { - return ( -
-

{label}

- -
- ) + return ( +
+

+ {label} +

+ Logo Freundeskreis VCP Rosenfeld +
+ ) }