Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>PresentPrep - Smart Presentation Testing Platform</title> | |
<script src="https://cdn.tailwindcss.com"></script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
<style> | |
.gradient-bg { | |
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); | |
} | |
.slide-preview { | |
transition: all 0.3s ease; | |
} | |
.slide-preview:hover { | |
transform: translateY(-5px); | |
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); | |
} | |
.progress-ring__circle { | |
transition: stroke-dashoffset 0.35s; | |
transform: rotate(-90deg); | |
transform-origin: 50% 50%; | |
} | |
.feedback-item { | |
transition: all 0.2s ease; | |
} | |
.feedback-item:hover { | |
transform: scale(1.02); | |
} | |
.avatar-pulse { | |
animation: pulse 2s infinite; | |
} | |
@keyframes pulse { | |
0% { | |
transform: scale(1); | |
opacity: 1; | |
} | |
50% { | |
transform: scale(1.05); | |
opacity: 0.8; | |
} | |
100% { | |
transform: scale(1); | |
opacity: 1; | |
} | |
} | |
</style> | |
</head> | |
<body class="font-sans bg-gray-50"> | |
<!-- Navigation --> | |
<nav class="gradient-bg text-white shadow-lg"> | |
<div class="container mx-auto px-4 py-3 flex justify-between items-center"> | |
<div class="flex items-center space-x-2"> | |
<i class="fas fa-chalkboard-teacher text-2xl"></i> | |
<span class="text-xl font-bold">PresentPrep</span> | |
</div> | |
<div class="hidden md:flex space-x-6"> | |
<a href="#" class="hover:text-gray-200 font-medium">Features</a> | |
<a href="#" class="hover:text-gray-200 font-medium">Pricing</a> | |
<a href="#" class="hover:text-gray-200 font-medium">Resources</a> | |
<a href="#" class="hover:text-gray-200 font-medium">About</a> | |
</div> | |
<div class="flex items-center space-x-4"> | |
<button class="px-4 py-2 rounded-full bg-white text-purple-700 font-semibold hover:bg-gray-100 transition">Sign In</button> | |
<button class="md:hidden text-xl"> | |
<i class="fas fa-bars"></i> | |
</button> | |
</div> | |
</div> | |
</nav> | |
<!-- Hero Section --> | |
<section class="gradient-bg text-white py-16"> | |
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center"> | |
<div class="md:w-1/2 mb-10 md:mb-0"> | |
<h1 class="text-4xl md:text-5xl font-bold leading-tight mb-4">Master Your Presentations with AI Feedback</h1> | |
<p class="text-xl mb-8 opacity-90">Practice, analyze, and perfect your presentations before the big day with our smart testing platform.</p> | |
<div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4"> | |
<button class="px-8 py-3 bg-white text-purple-700 rounded-full font-semib | |
</html> |