diff --git a/src/App.css b/src/App.css
deleted file mode 100644
index e69de29..0000000
diff --git a/src/App.tsx b/src/App.tsx
deleted file mode 100644
index eb0b8e9..0000000
--- a/src/App.tsx
+++ /dev/null
@@ -1,53 +0,0 @@
-import { isMobile } from "react-device-detect";
-import { useEffect, useState } from "react";
-import { osVersion, isIOS } from "react-device-detect";
-import "./App.css";
-import { useVilla } from "./hooks/useVilla";
-import Desktop from "./pages/Desktop/Desktop";
-import Mobile from "./pages/Mobile/Mobile";
-import useStore from "./store/store";
-import NotSupportModal from "./components/NotSupportModal";
-
-function isWebview() {
- const navigator = window.navigator;
- const userAgent = navigator.userAgent;
- const normalizedUserAgent = userAgent.toLowerCase();
- const standalone = navigator.standalone;
-
- const isIos =
- /ip(ad|hone|od)/.test(normalizedUserAgent) ||
- (navigator.platform === "MacIntel" && navigator.maxTouchPoints > 1);
- const isAndroid = /android/.test(normalizedUserAgent);
- const isSafari = /safari/.test(normalizedUserAgent);
- const isWebview =
- (isAndroid && /; wv\)/.test(normalizedUserAgent)) ||
- (isIos && !standalone && !isSafari);
-
- return isWebview;
-}
-
-function App() {
- const { villa } = useVilla();
- const { setCurrentVilla, setModal } = useStore();
- const [isNotSupport, setIsNotSupport] = useState(true);
-
- useEffect(() => {
- // const isDeviceSupport = !(Number(osVersion) < 17 && isIOS);
- // console.log("isDeviceSupport", isDeviceSupport);
- // setIsNotSupport(!isDeviceSupport);
- setCurrentVilla(villa);
- }, [setCurrentVilla, villa]);
-
- // useEffect(() => {
- // if (isNotSupport) {
- // setModal(