update frontend

This commit is contained in:
Your Name 2025-12-21 18:50:18 -05:00
parent c9d9a9580c
commit 352c5db328
8 changed files with 33 additions and 8 deletions

View File

@ -4,6 +4,23 @@
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SocioWire</title> <title>SocioWire</title>
<!-- PWA -->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<meta name="theme-color" content="#0ea5e9" />
<meta name="description" content="SocioWire - Wired to life. Local news, events, market deals & friends on map." />
<!-- Open Graph pour partage Facebook/Twitter -->
<meta property="og:title" content="SocioWire.com" />
<meta property="og:description" content="Wired to life. Discover local news, events, market deals and friends on the map." />
<meta property="og:image" content="%PUBLIC_URL%/icons/social-share.jpg" />
<meta property="og:url" content="https://sociowire.com" />
<meta property="og:type" content="website" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="SocioWire.com" />
<meta name="twitter:description" content="Wired to life. Local news, events, market deals & friends on map." />
<meta name="twitter:image" content="%PUBLIC_URL%/icons/social-share.jpg" />
<!-- Apple touch icon -->
<link rel="apple-touch-icon" href="%PUBLIC_URL%/icons/icon-192x192.png" />
</head> </head>
<body> <body>
<div id="root"></div> <div id="root"></div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

BIN
public/icons/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 241 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 373 KiB

View File

@ -1,13 +1,21 @@
{ {
"name": "SocioWire",
"short_name": "SocioWire", "short_name": "SocioWire",
"description": "Real-time posts on a global map — wired to life.", "name": "SocioWire - Wired to life",
"icons": [
{
"src": "icons/icon-192x192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "icons/icon-512x512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": "/", "start_url": "/",
"display": "standalone", "display": "standalone",
"background_color": "#020617",
"theme_color": "#0ea5e9", "theme_color": "#0ea5e9",
"icons": [ "background_color": "#050816",
{ "src": "/icons/icon-192.png", "sizes": "192x192", "type": "image/png" }, "description": "SocioWire - Local news, events, market deals & friends on map"
{ "src": "/icons/icon-512.png", "sizes": "512x512", "type": "image/png" } }
]
}