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
+
+
+
+
+ ); };