From a43b32a02822f1d6836146fbd6d09762772763ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Veikko=20Lintuj=C3=A4rvi?= Date: Thu, 16 May 2024 22:55:42 +0300 Subject: [PATCH] Make header logo into link to landing page --- pages/components/Logo.tsx | 43 ++++++++++++++++++++++----------------- 1 file changed, 24 insertions(+), 19 deletions(-) diff --git a/pages/components/Logo.tsx b/pages/components/Logo.tsx index ce0b2f3..a3dcae2 100644 --- a/pages/components/Logo.tsx +++ b/pages/components/Logo.tsx @@ -1,5 +1,6 @@ import React, { useEffect, useState } from 'react'; import styles from '../../styles/Logo.module.scss'; +import Link from 'next/link'; const Logo = () => { const [isDesktop, setIsDesktop] = useState(true); @@ -9,25 +10,29 @@ const Logo = () => { }, []); return ( -
-
- - - - Runosaari logo - -
-
@Sanna Hukkanen
-
-
-
+ + +
+
+ + + + Runosaari logo + +
+
@Sanna Hukkanen
+
+
+
+
+ ); };