| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Dramatic Arts Elite Tracker</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 = { |
| theme: { |
| extend: { |
| colors: { |
| primary: { |
| 500: '#811331', |
| }, |
| secondary: { |
| 500: '#0033a0', |
| } |
| } |
| } |
| } |
| } |
| </script> |
| </head> |
| <body class="bg-gray-100"> |
| <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="bg-white rounded-xl overflow-hidden shadow-lg"> |
| <img src="http://static.photos/theatre/640x360/15" alt="Dramatic stage with red curtains" class="w-full h-48 object-cover"> |
| <div class="p-6"> |
| <h3 class="text-xl font-semibold mb-2">David Park</h3> |
| <p class="text-gray-600 mb-4">Animation • Voiceover</p> |
| <div class="flex items-center text-secondary-500"> |
| <i data-feather="award" class="mr-2"></i> |
| <span>Voice Arts Award 2023</span> |
| </div> |
| </div> |
| </div> |
| class="max-w-3xl mx-auto text-center"> |
| <h1 class="text-4xl md:text-5xl font-bold mb-4">Access to Creative Expression</h1> |
| <p class="text-xl mb-8">Providing opportunities to play, act, and perform for those who would benefit most</p> |
| <a href="#features" class="bg-white text-primary-500 px-6 py-3 rounded-lg font-medium hover:bg-gray-100 transition duration-300 inline-block">Explore Features</a> |
| </div> |
| </section> |
| |
| <section class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-12"> |
| <div class="bg-white p-6 rounded-xl shadow-md"> |
| <div class="text-secondary-500 mb-4"> |
| <i data-feather="film" class="w-10 h-10"></i> |
| </div> |
| <h3 class="text-xl font-semibold mb-2">Performance Metrics</h3> |
| <p class="text-gray-600">Track vocal range, emotional depth, and physical expressiveness.</p> |
| </div> |
| <div class="bg-white p-6 rounded-xl shadow-md"> |
| <div class="text-secondary-500 mb-4"> |
| <i data-feather="trending-up" class="w-10 h-10"></i> |
| </div> |
| <h3 class="text-xl font-semibold mb-2">Progress Tracking</h3> |
| <p class="text-gray-600">Visualize your artistic growth with detailed analytics and reports.</p> |
| </div> |
| <div class="bg-white p-6 rounded-xl shadow-md"> |
| <div class="text-secondary-500 mb-4"> |
| <i data-feather="users" class="w-10 h-10"></i> |
| </div> |
| <h3 class="text-xl font-semibold mb-2">Collaboration</h3> |
| <p class="text-gray-600">Connect with directors and fellow actors for scene work.</p> |
| </div> |
| </section> |
| |
| <section id="features" class="mb-12"> |
| <h2 class="text-3xl font-bold text-center mb-8">Featured Performers</h2> |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"> |
| <div class="bg-white rounded-xl overflow-hidden shadow-lg"> |
| <img src="http://static.photos/people/640x360/1" alt="Stage Actor" class="w-full h-48 object-cover"> |
| <div class="p-6"> |
| <h3 class="text-xl font-semibold mb-2">Marcus Chen</h3> |
| <p class="text-gray-600 mb-4">Theatre • Classical</p> |
| <div class="flex items-center text-secondary-500"> |
| <i data-feather="award" class="mr-2"></i> |
| <span>Olivier Award 2023</span> |
| </div> |
| </div> |
| </div> |
| <div class="bg-white rounded-xl overflow-hidden shadow-lg"> |
| <img src="http://static.photos/people/640x360/2" alt="Film Actor" class="w-full h-48 object-cover"> |
| <div class="p-6"> |
| <h3 class="text-xl font-semibold mb-2">Elena Rodriguez</h3> |
| <p class="text-gray-600 mb-4">Film • Method Acting</p> |
| <div class="flex items-center text-secondary-500"> |
| <i data-feather="award" class="mr-2"></i> |
| <span>Best Actress 2023</span> |
| </div> |
| </div> |
| </div> |
| <div |
| <custom-footer></custom-footer> |
| <script src="components/navbar.js"></script> |
| <script src="components/footer.js"></script> |
| <script src="script.js"></script> |
| </body> |
| </html> |