diff --git a/assets/css/custom.css b/assets/css/custom.css new file mode 100644 index 0000000..dd9708c --- /dev/null +++ b/assets/css/custom.css @@ -0,0 +1,47 @@ + +/* Import Google Fonts */ +@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap'); + +body { + font-family: 'Inter', sans-serif; + background-color: #f8f9fa; + color: #212529; +} + +.navbar-brand { + font-weight: 700; +} + +.card { + border: none; + border-radius: 0.75rem; + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); +} + +.table { + vertical-align: middle; +} + +.table thead th { + font-weight: 600; + color: #6c757d; + border-bottom-width: 1px; +} + +.table tbody tr:hover { + background-color: #f1f3f5; +} + +.symbol-logo { + width: 24px; + height: 24px; + margin-right: 12px; +} + +.fw-medium { + font-weight: 500; +} + +.badge { + font-weight: 600; +} diff --git a/assets/js/main.js b/assets/js/main.js new file mode 100644 index 0000000..a256fd6 --- /dev/null +++ b/assets/js/main.js @@ -0,0 +1,3 @@ + +// No custom JavaScript needed for the initial static dashboard. +// This file is ready for future interactivity. diff --git a/db/config.php b/db/config.php index b92662e..aa11ca4 100644 --- a/db/config.php +++ b/db/config.php @@ -1,9 +1,9 @@ - + - - - New Style - - - - - - - - - - - - - - - - - - - + + + + Crypto Market Alert System + + + + + + + + + + + + + + + + + + + -
-
-

Analyzing your requirements and generating your website…

-
- Loading… -
-

AI is collecting your requirements and applying the first changes.

-

This page will update automatically as the plan is implemented.

-

Runtime: PHP — UTC

-
-
- + + + +
+
+
+

Live Market Signals

+
+
+
+ + + + + + + + + + + + 'KCEX', 'symbol' => 'BTC/USDT', 'price' => '68,123.45', 'change' => 2.5, 'signal' => null], + ['exchange' => 'Bitget', 'symbol' => 'ETH/USDT', 'price' => '3,789.12', 'change' => -21.8, 'signal' => 'Crash Alert'], + ['exchange' => 'WEEX', 'symbol' => 'PEPE/USDT', 'price' => '0.00001234', 'change' => 255.1, 'signal' => 'Pump Alert'], + ['exchange' => 'KuCoin', 'symbol' => 'SOL/USDT', 'price' => '165.80', 'change' => -1.2, 'signal' => 'Bearish Reversal'], + ['exchange' => 'KCEX', 'symbol' => 'DOGE/USDT', 'price' => '0.1588', 'change' => 5.6, 'signal' => null], + ['exchange' => 'Bitget', 'symbol' => 'XRP/USDT', 'price' => '0.5210', 'change' => -0.5, 'signal' => null], + ]; + + foreach ($mock_data as $row): + $change_color = $row['change'] >= 0 ? 'success' : 'danger'; + $change_icon = $row['change'] >= 0 ? 'bi-arrow-up-right' : 'bi-arrow-down-left'; + + $signal_badge = ''; + if ($row['signal'] === 'Crash Alert') { + $signal_badge = 'Crash Alert'; + } elseif ($row['signal'] === 'Pump Alert') { + $signal_badge = 'Pump Alert'; + } elseif ($row['signal'] === 'Bearish Reversal') { + $signal_badge = 'Bearish Reversal'; + } + ?> + + + + + + + + + +
EXCHANGESYMBOLPRICE24H %SIGNAL
+
+ + +
+
$ + + + % + +
+
+
+
+
+ + + + + - + \ No newline at end of file