File size: 6,550 Bytes
6777b26
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!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>