We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1e5cc9 commit cbfc1f8Copy full SHA for cbfc1f8
1 file changed
src/app/page.tsx
@@ -2,11 +2,11 @@
2
3
import Image from "next/image";
4
import Background from '@components/background/background';
5
-import Clock from "@components/clock/Clock";
6
import dynamic from "next/dynamic";
7
import { useRef, useState, ReactNode, useEffect, Dispatch, SetStateAction, CSSProperties } from "react";
8
//import Modal from "@/components/modal/Modal";
9
+const Clock = dynamic(() => import('@components/clock/Clock'), { ssr: false });
10
const Menu = dynamic(() => import('@components/xmb-menu/xmb-menu'), { ssr: false });
11
const Modal = dynamic(() => import('@components/modal/Modal'), { ssr: false })
12
0 commit comments