From c84fd2a7e98c5c6ff001bf53928cfc8ca31e4db8 Mon Sep 17 00:00:00 2001 From: backuppc Date: Wed, 21 Jan 2026 14:25:55 +0900 Subject: [PATCH] =?UTF-8?q?=EA=B4=91=EA=B3=A0=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App.tsx | 31 +++++++++++++++++++++++++------ index.html | 2 ++ 2 files changed, 27 insertions(+), 6 deletions(-) diff --git a/App.tsx b/App.tsx index f62cd4a..e6b9ca9 100644 --- a/App.tsx +++ b/App.tsx @@ -11,6 +11,28 @@ import { CreateFolderModal, RenameModal, DeleteModal } from './components/FileAc import ConflictModal from './components/ConflictModal'; import { formatBytes } from './utils/formatters'; +const AdSenseBanner: React.FC = () => { + useEffect(() => { + try { + // @ts-ignore + (window.adsbygoogle = window.adsbygoogle || []).push({}); + } catch (e) { + console.error("AdSense error", e); + } + }, []); + + return ( +
+ +
+ ); +}; + const App: React.FC = () => { // --- State --- const savedPref = localStorage.getItem('save_connection_info') !== 'false'; @@ -1035,13 +1057,10 @@ const App: React.FC = () => {
-
+
+ {/* Placeholder for Sponsored tag if needed, or remove it */}
SPONSORED
-
-
GOOGLE ADSENSE
-
Premium Ad Space Available
-
-
+
diff --git a/index.html b/index.html index 52f6c15..f839a1e 100644 --- a/index.html +++ b/index.html @@ -5,6 +5,8 @@ WebFTP by SIMP +