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}

+ +
+ ) }