conversation-starter/index.html

24 lines
943 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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>
<script src="js/index.js"></script>
</body>
</html>