crypto-pulse-scanner / index.html
lonestar108's picture
implement nice styling for the lefthand sidebar
f1c25f6 verified
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Crypto Pulse Scanner</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
primary: {
500: '#6366f1',
},
secondary: {
500: '#10b981',
}
}
}
}
}
</script>
</head>
<body class="bg-gray-900 text-gray-100 min-h-screen">
<crypto-sidebar></crypto-sidebar>
<crypto-header></crypto-header>
<main class="container mx-auto px-4 py-8">
<div class="flex flex-col lg:flex-row gap-8">
<div class="lg:w-1/4">
<crypto-filters></crypto-filters>
</div>
<div class="lg:w-3/4">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6" id="crypto-grid">
<!-- Crypto cards will be inserted here -->
</div>
</div>
</div>
</main>
<crypto-footer></crypto-footer>
<script src="components/sidebar.js"></script>
<script src="components/header.js"></script>
<script src="components/filters.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>