From ae8ed9912a6d26cc8eec7a9348d42f70b14be511 Mon Sep 17 00:00:00 2001 From: Thomas Ruoff Date: Mon, 26 Oct 2020 23:43:47 +0100 Subject: [PATCH] header links to home --- components/header.tsx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/components/header.tsx b/components/header.tsx index 676a1a0..73e52d8 100644 --- a/components/header.tsx +++ b/components/header.tsx @@ -1,10 +1,11 @@ import React from 'react' +import Link from 'next/link' export default function Header({ label = 'Pfadi Bussle' }: { label?: string }) { - return ( -
-

{label}

- -
- ) + return ( +
+

{label}

+ +
+ ) }