From 1a2aa9f678714cb80f6945f83a71f3fc9826989a Mon Sep 17 00:00:00 2001 From: skidoodle Date: Sun, 24 Apr 2022 17:49:04 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/index.tsx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pages/index.tsx b/pages/index.tsx index d50ac86..2d17fb9 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -5,11 +5,14 @@ import Icon from 'components/Icon' import IconLayout from 'components/IconLayout' import MainLayout from 'components/MainLayout' import Spotify from 'components/Spotify' -import Time from 'components/Time' import Weather from 'components/Weather' import { FaSteam, FaGithub, FaEnvelope } from 'react-icons/fa' import { RiInstagramFill } from 'react-icons/ri' -import { SiDiscord } from 'react-icons/si' +import { SiDiscord } from 'react-icons/si' +import dynamic from 'next/dynamic' +const Time = dynamic(() => import('components/Time'), { + ssr: false, +}) const Home = ({data}: any) => { return (