Open Graph update
This commit is contained in:
@@ -28,7 +28,7 @@
|
|||||||
<meta property="og:description" content="The first P2P messenger with Lightning Network payments">
|
<meta property="og:description" content="The first P2P messenger with Lightning Network payments">
|
||||||
<meta property="og:url" content="https://github.com/SecureBitChat/securebit-chat/">
|
<meta property="og:url" content="https://github.com/SecureBitChat/securebit-chat/">
|
||||||
<meta property="og:type" content="website">
|
<meta property="og:type" content="website">
|
||||||
<meta property="og:image" content="https://github.com/SecureBitChat/securebit-chat/assets/images/og-image.png">
|
<meta property="og:image" content="https://github.com/SecureBitChat/securebit-chat/favicon.ico">
|
||||||
|
|
||||||
<!-- Twitter Card -->
|
<!-- Twitter Card -->
|
||||||
<meta name="twitter:card" content="summary_large_image">
|
<meta name="twitter:card" content="summary_large_image">
|
||||||
|
|||||||
@@ -15,8 +15,7 @@ const DownloadApps = () => {
|
|||||||
const desktopApps = apps.filter(a => a.platform !== 'Mobile');
|
const desktopApps = apps.filter(a => a.platform !== 'Mobile');
|
||||||
const mobileApps = 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" }, [
|
return React.createElement('div', { className: "mt-20 px-6" }, [
|
||||||
// Header
|
// 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.')
|
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" },
|
React.createElement('div', { key: 'desktop-row', className: "hidden sm:flex justify-center flex-wrap gap-6 mb-6" },
|
||||||
desktopApps.map(app =>
|
desktopApps.map(app =>
|
||||||
React.createElement('div', {
|
React.createElement('div', {
|
||||||
@@ -55,7 +53,6 @@ const DownloadApps = () => {
|
|||||||
)
|
)
|
||||||
),
|
),
|
||||||
|
|
||||||
// Нижний ряд: Mobile (всегда центрированы)
|
|
||||||
React.createElement('div', { key: 'mobile-row', className: "flex justify-center gap-6" },
|
React.createElement('div', { key: 'mobile-row', className: "flex justify-center gap-6" },
|
||||||
mobileApps.map(app =>
|
mobileApps.map(app =>
|
||||||
React.createElement('div', {
|
React.createElement('div', {
|
||||||
|
|||||||
Reference in New Issue
Block a user