File size: 1,881 Bytes
a2ed485 f4a617e a2ed485 | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Performance Analytics</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<section class="bg-gradient-to-r from-primary-500 to-secondary-500 rounded-xl p-8 text-white mb-12">
<div class="max-w-3xl mx-auto text-center">
<h1 class="text-4xl md:text-5xl font-bold mb-4">Performance Analytics</h1>
<p class="text-xl mb-8">Tracking progress to celebrate every achievement</p>
</div>
</section>
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div class="bg-white p-6 rounded-xl shadow-md">
<h3 class="text-xl font-semibold mb-4 text-primary-500">Vocal Analysis</h3>
<p class="text-gray-600 mb-4">Track pitch, tone, and emotional range over time with our advanced vocal analysis tools.</p>
<img src="http://static.photos/technology/640x360/1" alt="Vocal Analysis" class="rounded-lg">
</div>
<div class="bg-white p-6 rounded-xl shadow-md">
<h3 class="text-xl font-semibold mb-4 text-primary-500">Physical Performance</h3>
<p class="text-gray-600 mb-4">Analyze movement, gestures, and stage presence with motion tracking technology.</p>
<img src="http://static.photos/technology/640x360/2" alt="Physical Performance" class="rounded-lg">
</div>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
</body>
</html> |