From 2040228892aafe73482375e64e5a82aaa8827062 Mon Sep 17 00:00:00 2001 From: lockbitchat Date: Sun, 17 Aug 2025 00:33:12 -0400 Subject: [PATCH] Open Graph update --- index.html | 2 +- src/components/ui/DownloadApps.jsx | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/index.html b/index.html index 8b3174e..636d491 100644 --- a/index.html +++ b/index.html @@ -28,7 +28,7 @@ - + diff --git a/src/components/ui/DownloadApps.jsx b/src/components/ui/DownloadApps.jsx index 8937357..a7c2278 100644 --- a/src/components/ui/DownloadApps.jsx +++ b/src/components/ui/DownloadApps.jsx @@ -15,8 +15,7 @@ const DownloadApps = () => { const desktopApps = apps.filter(a => a.platform !== 'Mobile'); const mobileApps = apps.filter(a => a.platform === 'Mobile'); - // Размер карточки - const cardSize = "w-28 h-28"; // квадратные + const cardSize = "w-28 h-28"; return React.createElement('div', { className: "mt-20 px-6" }, [ // Header @@ -25,7 +24,6 @@ const DownloadApps = () => { React.createElement('p', { key: 'subtitle', className: "text-secondary text-lg mb-5" }, 'Stay secure on every device. Choose your platform and start chatting privately.') ]), - // Верхний ряд: Desktop + Web (скрыт на мобильных) React.createElement('div', { key: 'desktop-row', className: "hidden sm:flex justify-center flex-wrap gap-6 mb-6" }, desktopApps.map(app => React.createElement('div', { @@ -55,7 +53,6 @@ const DownloadApps = () => { ) ), - // Нижний ряд: Mobile (всегда центрированы) React.createElement('div', { key: 'mobile-row', className: "flex justify-center gap-6" }, mobileApps.map(app => React.createElement('div', {