File size: 4,541 Bytes
b190b45 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Crypto Intelligence Hub - Pages</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.container {
background: white;
border-radius: 20px;
padding: 40px;
max-width: 900px;
width: 100%;
box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
h1 {
color: #667eea;
margin-bottom: 10px;
font-size: 2.5em;
}
.subtitle {
color: #666;
margin-bottom: 30px;
font-size: 1.1em;
}
.pages-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
margin-top: 30px;
}
.page-card {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 12px;
padding: 25px;
text-decoration: none;
color: white;
transition: transform 0.3s, box-shadow 0.3s;
display: flex;
flex-direction: column;
gap: 10px;
}
.page-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}
.page-card h3 {
font-size: 1.3em;
margin-bottom: 5px;
}
.page-card p {
font-size: 0.9em;
opacity: 0.9;
}
.icon {
font-size: 2em;
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="container">
<h1>π Crypto Intelligence Hub</h1>
<p class="subtitle">Multi-Page Application - Choose a page to explore</p>
<div class="pages-grid">
<a href="/dashboard" class="page-card">
<div class="icon">π</div>
<h3>Dashboard</h3>
<p>Overview and statistics</p>
</a>
<a href="/market" class="page-card">
<div class="icon">πΉ</div>
<h3>Market Data</h3>
<p>Real-time cryptocurrency prices</p>
</a>
<a href="/models" class="page-card">
<div class="icon">π€</div>
<h3>AI Models</h3>
<p>Machine learning models</p>
</a>
<a href="/sentiment" class="page-card">
<div class="icon">π</div>
<h3>Sentiment Analysis</h3>
<p>Market sentiment indicators</p>
</a>
<a href="/ai-analyst" class="page-card">
<div class="icon">π§ </div>
<h3>AI Analyst</h3>
<p>AI-powered trading insights</p>
</a>
<a href="/trading-assistant" class="page-card">
<div class="icon">πΌ</div>
<h3>Trading Assistant</h3>
<p>Advanced trading tools</p>
</a>
<a href="/news" class="page-card">
<div class="icon">π°</div>
<h3>News</h3>
<p>Latest crypto news</p>
</a>
<a href="/providers" class="page-card">
<div class="icon">π</div>
<h3>Data Providers</h3>
<p>API providers status</p>
</a>
<a href="/diagnostics" class="page-card">
<div class="icon">π</div>
<h3>Diagnostics</h3>
<p>System health and testing</p>
</a>
<a href="/api-explorer" class="page-card">
<div class="icon">π οΈ</div>
<h3>API Explorer</h3>
<p>Explore API endpoints</p>
</a>
</div>
</div>
</body>
</html>
|