seo-automaton-pro / analytics.html
ShabaMed's picture
change design ony use black and white colours.. anf for card use a moving border light that turn on the border of each card.. also forr title make it white with a lighting animaiton.. all icons must be in 3d style also in white.. imporve overall design and make it look super minimalistic and futuristic
db0e131 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>Analytics - SEO Automaton Pro</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<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>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
fontFamily: {
'space-grotesk': ['Space Grotesk', 'monospace'],
},
colors: {
primary: {
50: '#f0f9ff',
100: '#e0f2fe',
200: '#bae6fd',
300: '#7dd3fc',
400: '#38bdf8',
500: '#0ea5e9',
600: '#0284c7',
700: '#0369a1',
800: '#075985',
900: '#0c4a6e',
},
secondary: {
50: '#fdf4ff',
100: '#fae8ff',
200: '#f5d0fe',
300: '#f0abfc',
400: '#e879f9',
500: '#d946ef',
600: '#c026d3',
700: '#a21caf',
800: '#86198f',
900: '#701a75',
}
}
}
}
}
</script>
</head>
<body class="bg-gray-900 text-white font-space-grotesk min-h-screen flex flex-col">
<custom-navbar></custom-navbar>
<main class="flex-1 container mx-auto px-4 py-8">
<div class="flex items-center gap-3 mb-8">
<i data-feather="bar-chart-2" class="icon-3d"></i>
<h1 class="text-3xl md:text-4xl font-bold title-lighting">ANALYTICS DASHBOARD</h1>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-6 mb-8">
<!-- Traffic Overview -->
<div class="animated-border">
<div class="card-content">
<h2 class="text-2xl font-semibold mb-6">TRAFFIC OVERVIEW</h2>
<div class="bg-gray-700 rounded-xl p-4 h-64 flex items-center justify-center text-gray-500">
ANALYTICS CHART VISUALIZATION
</div>
</div>
</div>
</body>
</html>