Spaces:
Running
Running
File size: 2,534 Bytes
dae67d3 04f58a5 80796a5 04f58a5 80796a5 04f58a5 785ede9 80796a5 785ede9 80796a5 785ede9 80796a5 785ede9 80796a5 785ede9 80796a5 785ede9 04f58a5 80796a5 dae67d3 04f58a5 80796a5 785ede9 80796a5 04f58a5 |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SentimentSpark - GhostAI1's Sentiment Analysis Hub</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@700&family=Roboto:wght@400;700&display=swap" rel="stylesheet">
</head>
<body class="bg-dark text-light">
<header class="hero text-center py-5">
<h1 class="display-3">π SentimentSpark π₯</h1>
<p class="lead">Explore 500 Reviews in a Neon-Charged, Dark-Themed Universe by ghostai1</p>
</header>
<div class="container py-5">
<div class="card bg-dark border-neon mb-5 p-4 shadow-lg">
<div class="card-body">
<div class="row align-items-center">
<div class="col-md-6">
<label for="sentimentAnalysis" class="form-label fw-bold">Filter Sentiment</label>
<select id="sentimentAnalysis" class="form-select bg-dark text-light border-neon">
<option value="all">All Sentiments</option>
<option value="positive">Positive π</option>
<option value="negative">Negative π’</option>
</select>
</div>
</div>
</div>
</div>
<div class="table-responsive rounded-3 overflow-hidden">
<table class="table table-dark table-hover border-neon-dark">
<thead>
<tr>
<th scope="col">ID</th>
<th scope="col">Review</th>
<th scope="col">Sentiment</th>
</tr>
</thead>
<tbody id="dataTable"></tbody>
</table>
</div>
<nav aria-label="Pagination" class="mt-4">
<ul class="pagination pagination-lg justify-content-center" id="customPagination"></ul>
</nav>
</div>
<footer class="text-center py-4 bg-gray-900">
<p class="mb-0">© 2025 SentimentSpark by ghostai1. Licensed under Apache-2.0. Powered by π₯.</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="script.js"></script>
</body>
</html> |