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);
useEffect(() => {
setIsDesktop(window.innerWidth > 768);
}, []);
return (
);
};
export default Logo;