LOGO更改

This commit is contained in:
Flatlogic Bot 2026-02-11 15:49:10 +00:00
parent 79b07243ce
commit 5e2fe8c059
10 changed files with 62 additions and 25 deletions

View File

@ -45,6 +45,7 @@ $chat_users = $pdo->query("
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>客服管理 - NovaEx 管理后台</title> <title>客服管理 - NovaEx 管理后台</title>
<link rel="icon" type="image/png" href="../assets/pasted-20260211-152742-c4035b1b.png">
<link rel="stylesheet" href="../assets/css/custom.css"> <link rel="stylesheet" href="../assets/css/custom.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style> <style>
@ -69,12 +70,16 @@ $chat_users = $pdo->query("
.back-btn { color: #848E9C; text-decoration: none; font-size: 0.9rem; padding: 15px; border-bottom: 1px solid #2B3139; display: block; } .back-btn { color: #848E9C; text-decoration: none; font-size: 0.9rem; padding: 15px; border-bottom: 1px solid #2B3139; display: block; }
.back-btn:hover { color: white; background: #2B3139; } .back-btn:hover { color: white; background: #2B3139; }
.admin-logo { width: 200px; height: 80px; object-fit: contain; }
</style> </style>
</head> </head>
<body> <body>
<div class="admin-layout"> <div class="admin-layout">
<div class="sidebar"> <div class="sidebar">
<h3 style="color: white; margin-bottom: 2rem;">NovaEx 管理员</h3> <div style="display: flex; flex-direction: column; align-items: center; margin-bottom: 2rem; gap: 10px;">
<img src="../assets/pasted-20260211-152742-c4035b1b.png" alt="Logo" class="admin-logo">
<div style="color: white; font-weight: bold; font-size: 0.9rem;">NovaEx 管理员</div>
</div>
<a href="index.php" class="menu-item"><i class="fas fa-chart-pie"></i> 仪表盘</a> <a href="index.php" class="menu-item"><i class="fas fa-chart-pie"></i> 仪表盘</a>
<a href="users.php" class="menu-item"><i class="fas fa-users"></i> 用户管理</a> <a href="users.php" class="menu-item"><i class="fas fa-users"></i> 用户管理</a>
<a href="kyc.php" class="menu-item"><i class="fas fa-id-card"></i> KYC 审核</a> <a href="kyc.php" class="menu-item"><i class="fas fa-id-card"></i> KYC 审核</a>

View File

@ -69,13 +69,17 @@ $pending_orders = $pdo->query("SELECT COUNT(*) FROM fiat_orders WHERE status IN
.btn-approve { background: #00c087; color: white; } .btn-approve { background: #00c087; color: white; }
.btn-reject { background: #f6465d; color: white; } .btn-reject { background: #f6465d; color: white; }
.back-btn { color: #848E9C; text-decoration: none; font-size: 0.9rem; margin-bottom: 20px; display: inline-block; } .back-btn { color: #848E9C; text-decoration: none; font-size: 0.9rem; margin-bottom: 20px; display: inline-block; }
.admin-logo { width: 200px; height: 80px; object-fit: contain; }
select { background: #1e2329; border: 1px solid #2b3139; color: white; padding: 5px; border-radius: 4px; font-size: 0.75rem; } select { background: #1e2329; border: 1px solid #2b3139; color: white; padding: 5px; border-radius: 4px; font-size: 0.75rem; }
</style> </style>
</head> </head>
<body> <body>
<div class="admin-layout"> <div class="admin-layout">
<div class="sidebar"> <div class="sidebar">
<h3 style="color: white; margin-bottom: 2rem;">NovaEx 管理员</h3> <div style="display: flex; align-items: center; gap: 10px; margin-bottom: 2rem;">
<img src="../assets/pasted-20260211-152742-c4035b1b.png" alt="Logo" class="admin-logo">
<h3 style="color: white; margin: 0;">NovaEx 管理员</h3>
</div>
<a href="index.php" class="menu-item"><i class="fas fa-chart-pie"></i> 仪表盘</a> <a href="index.php" class="menu-item"><i class="fas fa-chart-pie"></i> 仪表盘</a>
<a href="users.php" class="menu-item"><i class="fas fa-users"></i> 用户管理</a> <a href="users.php" class="menu-item"><i class="fas fa-users"></i> 用户管理</a>
<a href="kyc.php" class="menu-item"><i class="fas fa-id-card"></i> KYC 审核</a> <a href="kyc.php" class="menu-item"><i class="fas fa-id-card"></i> KYC 审核</a>

View File

@ -13,6 +13,7 @@ $unread_msgs = $db->query("SELECT COUNT(*) FROM messages WHERE sender = 'user' A
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>管理后台 - NovaEx</title> <title>管理后台 - NovaEx</title>
<link rel="icon" type="image/png" href="../assets/pasted-20260211-152742-c4035b1b.png">
<link rel="stylesheet" href="../assets/css/custom.css"> <link rel="stylesheet" href="../assets/css/custom.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style> <style>
@ -23,12 +24,16 @@ $unread_msgs = $db->query("SELECT COUNT(*) FROM messages WHERE sender = 'user' A
.menu-item:hover, .menu-item.active { background: #2B3139; color: white; } .menu-item:hover, .menu-item.active { background: #2B3139; color: white; }
.badge { background: var(--danger-color); color: white; border-radius: 10px; padding: 2px 8px; font-size: 0.7rem; margin-left: auto; } .badge { background: var(--danger-color); color: white; border-radius: 10px; padding: 2px 8px; font-size: 0.7rem; margin-left: auto; }
.stat-card { background: #1E2329; padding: 20px; border-radius: 8px; border: 1px solid #2B3139; } .stat-card { background: #1E2329; padding: 20px; border-radius: 8px; border: 1px solid #2B3139; }
.admin-logo { width: 200px; height: 80px; object-fit: contain; }
</style> </style>
</head> </head>
<body> <body>
<div class="admin-layout"> <div class="admin-layout">
<div class="sidebar"> <div class="sidebar">
<h3 style="color: white; margin-bottom: 2rem;">NovaEx 管理员</h3> <div style="display: flex; flex-direction: column; align-items: center; margin-bottom: 2rem; gap: 10px;">
<img src="../assets/pasted-20260211-152742-c4035b1b.png" alt="Logo" class="admin-logo">
<div style="color: white; font-weight: bold; font-size: 0.9rem;">NovaEx 管理员</div>
</div>
<a href="index.php" class="menu-item active"><i class="fas fa-chart-pie"></i> 仪表盘</a> <a href="index.php" class="menu-item active"><i class="fas fa-chart-pie"></i> 仪表盘</a>
<a href="users.php" class="menu-item"><i class="fas fa-users"></i> 用户管理</a> <a href="users.php" class="menu-item"><i class="fas fa-users"></i> 用户管理</a>
<a href="kyc.php" class="menu-item"> <a href="kyc.php" class="menu-item">

View File

@ -18,6 +18,7 @@ $pending_orders = $pdo->query("SELECT COUNT(*) FROM fiat_orders WHERE status IN
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>KYC 审核 - NovaEx 管理后台</title> <title>KYC 审核 - NovaEx 管理后台</title>
<link rel="icon" type="image/png" href="../assets/pasted-20260211-152742-c4035b1b.png">
<link rel="stylesheet" href="../assets/css/custom.css"> <link rel="stylesheet" href="../assets/css/custom.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style> <style>
@ -30,12 +31,16 @@ $pending_orders = $pdo->query("SELECT COUNT(*) FROM fiat_orders WHERE status IN
.kyc-card { background: #1E2329; border: 1px solid #2B3139; padding: 20px; border-radius: 8px; margin-bottom: 20px; } .kyc-card { background: #1E2329; border: 1px solid #2B3139; padding: 20px; border-radius: 8px; margin-bottom: 20px; }
.kyc-img { width: 200px; height: 120px; object-fit: cover; border-radius: 4px; cursor: pointer; border: 1px solid #2B3139; } .kyc-img { width: 200px; height: 120px; object-fit: cover; border-radius: 4px; cursor: pointer; border: 1px solid #2B3139; }
.back-btn { color: #848E9C; text-decoration: none; font-size: 0.9rem; margin-bottom: 20px; display: inline-block; } .back-btn { color: #848E9C; text-decoration: none; font-size: 0.9rem; margin-bottom: 20px; display: inline-block; }
.admin-logo { width: 200px; height: 80px; object-fit: contain; }
</style> </style>
</head> </head>
<body> <body>
<div class="admin-layout"> <div class="admin-layout">
<div class="sidebar"> <div class="sidebar">
<h3 style="color: white; margin-bottom: 2rem;">NovaEx 管理员</h3> <div style="display: flex; flex-direction: column; align-items: center; margin-bottom: 2rem; gap: 10px;">
<img src="../assets/pasted-20260211-152742-c4035b1b.png" alt="Logo" class="admin-logo">
<div style="color: white; font-weight: bold; font-size: 0.9rem;">NovaEx 管理员</div>
</div>
<a href="index.php" class="menu-item"><i class="fas fa-chart-pie"></i> 仪表盘</a> <a href="index.php" class="menu-item"><i class="fas fa-chart-pie"></i> 仪表盘</a>
<a href="users.php" class="menu-item"><i class="fas fa-users"></i> 用户管理</a> <a href="users.php" class="menu-item"><i class="fas fa-users"></i> 用户管理</a>
<a href="kyc.php" class="menu-item active"><i class="fas fa-id-card"></i> KYC 审核</a> <a href="kyc.php" class="menu-item active"><i class="fas fa-id-card"></i> KYC 审核</a>

View File

@ -56,6 +56,7 @@ $pending_orders_count = $pdo->query("SELECT COUNT(*) FROM fiat_orders WHERE stat
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>充值管理 - NovaEx 管理后台</title> <title>充值管理 - NovaEx 管理后台</title>
<link rel="icon" type="image/png" href="../assets/pasted-20260211-152742-c4035b1b.png">
<link rel="stylesheet" href="../assets/css/custom.css"> <link rel="stylesheet" href="../assets/css/custom.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style> <style>
@ -74,12 +75,16 @@ $pending_orders_count = $pdo->query("SELECT COUNT(*) FROM fiat_orders WHERE stat
.completed { background: rgba(0, 192, 135, 0.1); color: #00c087; opacity: 0.6; } .completed { background: rgba(0, 192, 135, 0.1); color: #00c087; opacity: 0.6; }
@keyframes blink { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } } @keyframes blink { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }
.back-btn { color: #848E9C; text-decoration: none; font-size: 0.9rem; margin-bottom: 20px; display: inline-block; } .back-btn { color: #848E9C; text-decoration: none; font-size: 0.9rem; margin-bottom: 20px; display: inline-block; }
.admin-logo { width: 200px; height: 80px; object-fit: contain; }
</style> </style>
</head> </head>
<body> <body>
<div class="admin-layout"> <div class="admin-layout">
<div class="sidebar"> <div class="sidebar">
<h3 style="color: white; margin-bottom: 2rem;">NovaEx 管理员</h3> <div style="display: flex; flex-direction: column; align-items: center; margin-bottom: 2rem; gap: 10px;">
<img src="../assets/pasted-20260211-152742-c4035b1b.png" alt="Logo" class="admin-logo">
<div style="color: white; font-weight: bold; font-size: 0.9rem;">NovaEx 管理员</div>
</div>
<a href="index.php" class="menu-item"><i class="fas fa-chart-pie"></i> 仪表盘</a> <a href="index.php" class="menu-item"><i class="fas fa-chart-pie"></i> 仪表盘</a>
<a href="users.php" class="menu-item"><i class="fas fa-users"></i> 用户管理</a> <a href="users.php" class="menu-item"><i class="fas fa-users"></i> 用户管理</a>
<a href="kyc.php" class="menu-item"><i class="fas fa-id-card"></i> KYC 审核</a> <a href="kyc.php" class="menu-item"><i class="fas fa-id-card"></i> KYC 审核</a>

View File

@ -25,6 +25,7 @@ $pending_orders = $db->query("SELECT COUNT(*) FROM fiat_orders WHERE status IN (
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>系统设置 - NovaEx 管理后台</title> <title>系统设置 - NovaEx 管理后台</title>
<link rel="icon" type="image/png" href="../assets/pasted-20260211-152742-c4035b1b.png">
<link rel="stylesheet" href="../assets/css/custom.css"> <link rel="stylesheet" href="../assets/css/custom.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style> <style>
@ -39,12 +40,16 @@ $pending_orders = $db->query("SELECT COUNT(*) FROM fiat_orders WHERE status IN (
input[type="text"], input[type="number"], select { width: 100%; padding: 10px; background: #0B0E11; border: 1px solid #2B3139; color: white; border-radius: 4px; outline: none; } input[type="text"], input[type="number"], select { width: 100%; padding: 10px; background: #0B0E11; border: 1px solid #2B3139; color: white; border-radius: 4px; outline: none; }
.back-btn { color: #848E9C; text-decoration: none; font-size: 0.9rem; margin-bottom: 20px; display: inline-block; } .back-btn { color: #848E9C; text-decoration: none; font-size: 0.9rem; margin-bottom: 20px; display: inline-block; }
.back-btn:hover { color: white; } .back-btn:hover { color: white; }
.admin-logo { width: 200px; height: 80px; object-fit: contain; }
</style> </style>
</head> </head>
<body> <body>
<div class="admin-layout"> <div class="admin-layout">
<div class="sidebar"> <div class="sidebar">
<h3 style="color: white; margin-bottom: 2rem;">NovaEx 管理员</h3> <div style="display: flex; flex-direction: column; align-items: center; margin-bottom: 2rem; gap: 10px;">
<img src="../assets/pasted-20260211-152742-c4035b1b.png" alt="Logo" class="admin-logo">
<div style="color: white; font-weight: bold; font-size: 0.9rem;">NovaEx 管理员</div>
</div>
<a href="index.php" class="menu-item"><i class="fas fa-chart-pie"></i> 仪表盘</a> <a href="index.php" class="menu-item"><i class="fas fa-chart-pie"></i> 仪表盘</a>
<a href="users.php" class="menu-item"><i class="fas fa-users"></i> 用户管理</a> <a href="users.php" class="menu-item"><i class="fas fa-users"></i> 用户管理</a>
<a href="kyc.php" class="menu-item"><i class="fas fa-id-card"></i> KYC 审核</a> <a href="kyc.php" class="menu-item"><i class="fas fa-id-card"></i> KYC 审核</a>

View File

@ -64,12 +64,16 @@ $pending_orders = $pdo->query("SELECT COUNT(*) FROM fiat_orders WHERE status IN
.btn-approve { background: #00c087; color: white; } .btn-approve { background: #00c087; color: white; }
.btn-reject { background: #f6465d; color: white; } .btn-reject { background: #f6465d; color: white; }
.back-btn { color: #848E9C; text-decoration: none; font-size: 0.9rem; margin-bottom: 20px; display: inline-block; } .back-btn { color: #848E9C; text-decoration: none; font-size: 0.9rem; margin-bottom: 20px; display: inline-block; }
.admin-logo { width: 200px; height: 80px; object-fit: contain; }
</style> </style>
</head> </head>
<body> <body>
<div class="admin-layout"> <div class="admin-layout">
<div class="sidebar"> <div class="sidebar">
<h3 style="color: white; margin-bottom: 2rem;">NovaEx 管理员</h3> <div style="display: flex; align-items: center; gap: 10px; margin-bottom: 2rem;">
<img src="../assets/pasted-20260211-152742-c4035b1b.png" alt="Logo" class="admin-logo">
<h3 style="color: white; margin: 0;">NovaEx 管理员</h3>
</div>
<a href="index.php" class="menu-item"><i class="fas fa-chart-pie"></i> 仪表盘</a> <a href="index.php" class="menu-item"><i class="fas fa-chart-pie"></i> 仪表盘</a>
<a href="users.php" class="menu-item"><i class="fas fa-users"></i> 用户管理</a> <a href="users.php" class="menu-item"><i class="fas fa-users"></i> 用户管理</a>
<a href="kyc.php" class="menu-item"><i class="fas fa-id-card"></i> KYC 审核</a> <a href="kyc.php" class="menu-item"><i class="fas fa-id-card"></i> KYC 审核</a>

View File

@ -47,6 +47,7 @@ $pending_orders = $pdo->query("SELECT COUNT(*) FROM fiat_orders WHERE status IN
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>用户管理 - NovaEx 管理后台</title> <title>用户管理 - NovaEx 管理后台</title>
<link rel="icon" type="image/png" href="../assets/pasted-20260211-152742-c4035b1b.png">
<link rel="stylesheet" href="../assets/css/custom.css"> <link rel="stylesheet" href="../assets/css/custom.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style> <style>
@ -74,12 +75,16 @@ $pending_orders = $pdo->query("SELECT COUNT(*) FROM fiat_orders WHERE status IN
.header-actions { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; } .header-actions { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.back-btn { color: #848E9C; text-decoration: none; font-size: 0.9rem; } .back-btn { color: #848E9C; text-decoration: none; font-size: 0.9rem; }
.back-btn:hover { color: white; } .back-btn:hover { color: white; }
.admin-logo { width: 200px; height: 80px; object-fit: contain; }
</style> </style>
</head> </head>
<body> <body>
<div class="admin-layout"> <div class="admin-layout">
<div class="sidebar"> <div class="sidebar">
<h3 style="color: white; margin-bottom: 2rem;">NovaEx 管理员</h3> <div style="display: flex; flex-direction: column; align-items: center; margin-bottom: 2rem; gap: 10px;">
<img src="../assets/pasted-20260211-152742-c4035b1b.png" alt="Logo" class="admin-logo">
<div style="color: white; font-weight: bold; font-size: 0.9rem;">NovaEx 管理员</div>
</div>
<a href="index.php" class="menu-item"><i class="fas fa-chart-pie"></i> 仪表盘</a> <a href="index.php" class="menu-item"><i class="fas fa-chart-pie"></i> 仪表盘</a>
<a href="users.php" class="menu-item active"><i class="fas fa-users"></i> 用户管理</a> <a href="users.php" class="menu-item active"><i class="fas fa-users"></i> 用户管理</a>
<a href="kyc.php" class="menu-item"><i class="fas fa-id-card"></i> KYC 审核</a> <a href="kyc.php" class="menu-item"><i class="fas fa-id-card"></i> KYC 审核</a>

Binary file not shown.

After

Width:  |  Height:  |  Size: 494 KiB

View File

@ -5,12 +5,17 @@
<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>NovaEx | Leading Crypto Exchange</title> <title>NovaEx | Leading Crypto Exchange</title>
<link rel="icon" type="image/png" href="assets/pasted-20260211-152742-c4035b1b.png">
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>"> <link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script> <script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<style> <style>
.logo-text { font-size: 1.8rem; font-weight: 800; color: white; letter-spacing: -1px; display: flex; align-items: center; gap: 8px; font-family: 'Inter', sans-serif; } .logo-text { display: flex; align-items: center; }
.logo-svg { width: 32px; height: 32px; fill: #4facfe; } /* High Definition Original Image Size: 500x200px */
.logo-img { width: 500px !important; height: 200px !important; object-fit: contain; }
/* Navbar adjustment for large logo */
.navbar { height: auto !important; min-height: 64px; padding: 10px 1.5rem !important; }
/* Floating CS Chat */ /* Floating CS Chat */
.floating-service { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; cursor: pointer; box-shadow: 0 10px 25px rgba(0,242,254,0.3); z-index: 1000; transition: transform 0.3s ease; } .floating-service { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; cursor: pointer; box-shadow: 0 10px 25px rgba(0,242,254,0.3); z-index: 1000; transition: transform 0.3s ease; }
@ -19,6 +24,10 @@
#cs-chat-window { position: fixed; bottom: 100px; right: 30px; width: 380px; height: 500px; background: #161a1e; border: 1px solid #2b3139; border-radius: 16px; display: none; flex-direction: column; box-shadow: 0 20px 40px rgba(0,0,0,0.5); z-index: 1001; overflow: hidden; } #cs-chat-window { position: fixed; bottom: 100px; right: 30px; width: 380px; height: 500px; background: #161a1e; border: 1px solid #2b3139; border-radius: 16px; display: none; flex-direction: column; box-shadow: 0 20px 40px rgba(0,0,0,0.5); z-index: 1001; overflow: hidden; }
#cs-chat-window iframe { border: none; width: 100%; height: 100%; } #cs-chat-window iframe { border: none; width: 100%; height: 100%; }
.chat-header { background: #2b3139; padding: 15px; display: flex; justify-content: space-between; align-items: center; color: white; } .chat-header { background: #2b3139; padding: 15px; display: flex; justify-content: space-between; align-items: center; color: white; }
@media (max-width: 768px) {
.logo-img { width: 250px !important; height: 100px !important; }
}
</style> </style>
</head> </head>
<body> <body>
@ -39,17 +48,7 @@
<div style="display: flex; align-items: center; gap: 2rem;"> <div style="display: flex; align-items: center; gap: 2rem;">
<a href="index.php" style="text-decoration: none;"> <a href="index.php" style="text-decoration: none;">
<div class="logo-text"> <div class="logo-text">
<svg class="logo-svg" viewBox="0 0 100 100"> <img src="assets/pasted-20260211-152742-c4035b1b.png" alt="Logo" class="logo-img">
<rect x="10" y="10" width="80" height="80" rx="20" fill="url(#grad1)"/>
<path d="M30 30 L70 70 M70 30 L30 70" stroke="white" stroke-width="12" stroke-linecap="round"/>
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#4facfe;stop-opacity:1" />
<stop offset="100%" style="stop-color:#00f2fe;stop-opacity:1" />
</linearGradient>
</defs>
</svg>
NovaEx
</div> </div>
</a> </a>
<div class="nav-links"> <div class="nav-links">