From afd5dea721ac8983ad642206a590e35233005874 Mon Sep 17 00:00:00 2001 From: Wind-Explorer Date: Tue, 30 Jul 2024 21:43:57 +0800 Subject: [PATCH] removed unused file --- client/src/layouts/global.tsx | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 client/src/layouts/global.tsx diff --git a/client/src/layouts/global.tsx b/client/src/layouts/global.tsx deleted file mode 100644 index 2ced75e..0000000 --- a/client/src/layouts/global.tsx +++ /dev/null @@ -1,21 +0,0 @@ -import { Toaster } from "react-hot-toast"; -import SingaporeAgencyStrip from "../components/SingaporeAgencyStrip"; -import { Outlet } from "react-router-dom"; - -export default function GlobalLayout() { - return ( -
- -
- -
- - {/* - A div that becomes black in dark mode to cover white color parts - of the website when scrolling past the window's original view. - */} -
- -
- ); -}