pechkurofff commited on
Commit
4831702
·
verified ·
1 Parent(s): 50089cc

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. README.md +17 -10
  2. index.html +33 -19
README.md CHANGED
@@ -1,10 +1,17 @@
1
- ---
2
- title: Alfa B2b Analytics
3
- emoji: 📊
4
- colorFrom: gray
5
- colorTo: indigo
6
- sdk: static
7
- pinned: false
8
- ---
9
-
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
 
 
 
 
 
1
+ ---
2
+ title: Alfa Analytics B2B Platform
3
+ emoji: 🏦
4
+ colorFrom: red
5
+ colorTo: blue
6
+ sdk: static
7
+ pinned: true
8
+ ---
9
+
10
+ # Альфа-Аналитика B2B (Real Data & AI Platform)
11
+
12
+ B2B Analytics Platform featuring:
13
+ - Real-time DaData API Company INN Search
14
+ - OpenStreetMap POI Location Analysis
15
+ - Central Bank of Russia Macro Data & Demand Forecasting
16
+
17
+ GitHub Repository: [github.com/ArtemChik103/alfa](https://github.com/ArtemChik103/alfa)
index.html CHANGED
@@ -1,19 +1,33 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="ru">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Альфа-Аналитика B2B | Platform Demo</title>
7
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap" rel="stylesheet">
8
+ <style>
9
+ body { font-family: 'Inter', sans-serif; background: #0b0f19; color: #f3f4f6; padding: 2rem; }
10
+ .container { max-width: 900px; margin: 0 auto; background: #111827; border: 1px solid #1f2937; padding: 2rem; border-radius: 16px; }
11
+ h1 { color: #ef4444; }
12
+ .badge { background: #1f2937; color: #60a5fa; padding: 0.3rem 0.6rem; border-radius: 6px; font-size: 0.85rem; }
13
+ .btn { display: inline-block; background: #ef4444; color: white; padding: 0.7rem 1.4rem; text-decoration: none; border-radius: 8px; font-weight: 700; margin-top: 1rem; }
14
+ .btn:hover { background: #dc2626; }
15
+ </style>
16
+ </head>
17
+ <body>
18
+ <div class="container">
19
+ <h1>🏦 Альфа-Аналитика B2B</h1>
20
+ <p style="color:#9ca3af; margin-bottom: 1.5rem;">Интеллектуальная B2B платформа геоаналитики, прогнозирования спроса и сегментации клиентов с поддержкой DaData API и ЦБ РФ.</p>
21
+
22
+ <div style="margin-bottom: 1.5rem;">
23
+ <span class="badge">DaData API INN Integration</span>
24
+ <span class="badge">OpenStreetMap POIs</span>
25
+ <span class="badge">CBR Macro Rates</span>
26
+ <span class="badge">CatBoost R² = 0.884</span>
27
+ </div>
28
+
29
+ <p>Код проекта обновлен и доступен на GitHub:</p>
30
+ <a href="https://github.com/ArtemChik103/alfa" target="_blank" class="btn">Открыть Репозиторий ArtemChik103/alfa ➔</a>
31
+ </div>
32
+ </body>
33
+ </html>