lightstream-dashboard / index.html
sanketgiri's picture
import React, { useContext, useState } from 'react';
83e79d9 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LightStream Dashboard</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 src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.waves.min.js"></script>
</head>
<body class="bg-gradient-to-br from-blue-50 to-green-50 min-h-screen">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<!-- Content will be loaded here by React -->
<div id="root" class="bg-white/80 backdrop-blur-sm rounded-2xl shadow-xl border border-white/20 p-8 slide-up">
<div class="text-center mb-8 fade-in">
<h1 class="text-4xl font-bold gradient-text mb-4">Welcome to LightStream</h1>
<p class="text-gray-600 text-lg">Your AI-powered dashboard for seamless management</p>
</div>
<!-- Feature Grid with Animations -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6 mb-8">
<div class="bg-gradient-to-br from-blue-50 to-green-50 rounded-xl p-6 border border-blue-100 hover-lift fade-in" style="animation-delay: 0.1s">
<div class="text-blue-500 mb-3">
<i data-feather="sitemap" class="w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800 mb-2">Channel Management</h3>
<p class="text-gray-600">Efficiently manage your communication channels</p>
</div>
<div class="bg-gradient-to-br from-purple-50 to-pink-50 rounded-xl p-6 border border-purple-100 hover-lift fade-in" style="animation-delay: 0.2s">
<div class="text-purple-500 mb-3">
<i data-feather="key" class="w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800 mb-2">Token System</h3>
<p class="text-gray-600">Secure and scalable token management</p>
</div>
<div class="bg-gradient-to-br from-green-50 to-blue-50 rounded-xl p-6 border border-green-100 hover-lift fade-in" style="animation-delay: 0.3s">
<div class="text-green-500 mb-3">
<i data-feather="dollar-sign" class="w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold text-gray-800 mb-2">Redemption Center</h3>
<p class="text-gray-600">Streamline your redemption processes</p>
</div>
</div>
<!-- Quick Stats -->
<div class="grid grid-cols-1 md:grid-cols-4 gap-4 mb-8">
<div class="bg-white rounded-lg p-4 shadow-sm border border-gray-100 fade-in" style="animation-delay: 0.4s">
<div class="text-center">
<div class="text-2xl font-bold text-blue-600 mb-1">1,234</div>
<div class="text-sm text-gray-500">Active Users</div>
</div>
<div class="bg-white rounded-lg p-4 shadow-sm border border-gray-100 fade-in" style="animation-delay: 0.5s">Active Tokens</div>
<div class="text-sm text-gray-500">Total Revenue</div>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>
feather.replace();
VANTA.WAVES({
el: "custom-navbar",
color: 0x7dd3fc,
waveHeight: 20,
shininess: 50,
waveSpeed: 1.5,
zoom: 0.8
});
</script>
<script src="https://deepsite.hf.co/deepsite-badge.js"></script>
</body>
</html>