conversation-starter/index.html

32 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>💡</text></svg>">
<title>Topic Generator</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gradient-to-br from-blue-100 to-sky-100 min-h-screen p-4 sm:p-8">
<div class="max-w-3xl mx-auto">
<h1 class="text-3xl sm:text-4xl font-bold text-center text-blue-800 mb-6 sm:mb-8">Topic Generator</h1>
<button id="generateBtn" class="w-full bg-blue-600 hover:bg-blue-700 text-white font-semibold py-2 sm:py-3 px-4 sm:px-6 rounded-lg shadow-lg transition duration-300 ease-in-out transform hover:scale-105 mb-6 sm:mb-8">
Generate Topics
</button>
<div id="topicsContainer" class="space-y-3 sm:space-y-4">
<!-- Topics will be inserted here -->
</div>
<div class="mt-6 text-center">
<button id="timerBtn" class="bg-green-600 hover:bg-green-700 text-white font-semibold py-2 sm:py-3 px-4 sm:px-6 rounded-lg shadow-lg transition duration-300 ease-in-out transform hover:scale-105">
Start Timer
</button>
<div id="timerDisplay" class="text-4xl sm:text-5xl font-bold text-blue-800 mt-4"></div>
</div>
</div>
<script src="js/index.js?v=2"></script>
</body>
</html>