deepchat-explorer / templates.html
asd1asd1's picture
es muy basica debe ser mas potente trata de igual y mejorar a grok
6777b26 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Templates | DeepChat Explorer</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
</head>
<body class="bg-gray-100">
<custom-navbar></custom-navbar>
<div class="container mx-auto px-4 py-8">
<div class="max-w-6xl mx-auto">
<div class="flex items-center mb-6">
<i data-feather="layers" class="text-indigo-600 mr-2"></i>
<h1 class="text-2xl font-bold text-gray-800">Prompt Templates</h1>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Research Template -->
<div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-lg transition-shadow">
<div class="bg-indigo-600 px-4 py-3">
<h2 class="text-white font-semibold flex items-center">
<i data-feather="search" class="mr-2 w-4 h-4"></i>
Research Assistant
</h2>
</div>
<div class="p-4">
<p class="text-gray-600 mb-4">Comprehensive research template for academic or market research</p>
<button class="w-full bg-indigo-100 text-indigo-700 py-2 rounded-lg hover:bg-indigo-200 transition-colors">
Use Template
</button>
</div>
</div>
<!-- Code Review Template -->
<div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-lg transition-shadow">
<div class="bg-indigo-600 px-4 py-3">
<h2 class="text-white font-semibold flex items-center">
<i data-feather="code" class="mr-2 w-4 h-4"></i>
Code Review
</h2>
</div>
<div class="p-4">
<p class="text-gray-600 mb-4">Analyze and improve code quality with this template</p>
<button class="w-full bg-indigo-100 text-indigo-700 py-2 rounded-lg hover:bg-indigo-200 transition-colors">
Use Template
</button>
</div>
</div>
<!-- Business Plan Template -->
<div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-lg transition-shadow">
<div class="bg-indigo-600 px-4 py-3">
<h2 class="text-white font-semibold flex items-center">
<i data-feather="briefcase" class="mr-2 w-4 h-4"></i>
Business Plan
</h2>
</div>
<div class="p-4">
<p class="text-gray-600 mb-4">Structured approach to creating business plans</p>
<button class="w-full bg-indigo-100 text-indigo-700 py-2 rounded-lg hover:bg-indigo-200 transition-colors">
Use Template
</button>
</div>
</div>
<!-- Content Summary Template -->
<div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-lg transition-shadow">
<div class="bg-indigo-600 px-4 py-3">
<h2 class="text-white font-semibold flex items-center">
<i data-feather="file-text" class="mr-2 w-4 h-4"></i>
Content Summary
</h2>
</div>
<div class="p-4">
<p class="text-gray-600 mb-4">Extract key points from long documents</p>
<button class="w-full bg-indigo-100 text-indigo-700 py-2 rounded-lg hover:bg-indigo-200 transition-colors">
Use Template
</button>
</div>
</div>
<!-- Interview Questions Template -->
<div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-lg transition-shadow">
<div class="bg-indigo-600 px-4 py-3">
<h2 class="text-white font-semibold flex items-center">
<i data-feather="users" class="mr-2 w-4 h-4"></i>
Interview Questions
</h2>
</div>
<div class="p-4">
<p class="text-gray-600 mb-4">Generate tailored interview questions</p>
<button class="w-full bg-indigo-100 text-indigo-700 py-2 rounded-lg hover:bg-indigo-200 transition-colors">
Use Template
</button>
</div>
</div>
<!-- Creative Writing Template -->
<div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-lg transition-shadow">
<div class="bg-indigo-600 px-4 py-3">
<h2 class="text-white font-semibold flex items-center">
<i data-feather="edit-2" class="mr-2 w-4 h-4"></i>
Creative Writing
</h2>
</div>
<div class="p-4">
<p class="text-gray-600 mb-4">Spark creativity with structured prompts</p>
<button class="w-full bg-indigo-100 text-indigo-700 py-2 rounded-lg hover:bg-indigo-200 transition-colors">
Use Template
</button>
</div>
</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>
<script>feather.replace();</script>
</body>
</html>