venezianof commited on
Commit
cad479f
·
verified ·
1 Parent(s): 9b8f104

glp1 plasticita 10slides - Initial Deployment

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +538 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Ricercheaa
3
- emoji: 💻
4
- colorFrom: green
5
- colorTo: purple
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: ricercheaa
3
+ emoji: 🐳
4
+ colorFrom: gray
5
+ colorTo: green
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,538 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>GLP-1 Plasticity</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .slide {
11
+ display: none;
12
+ opacity: 0;
13
+ transition: opacity 0.5s ease;
14
+ }
15
+ .slide.active {
16
+ display: block;
17
+ opacity: 1;
18
+ }
19
+ .progress-bar {
20
+ height: 5px;
21
+ background-color: #3b82f6;
22
+ transition: width 0.3s ease;
23
+ }
24
+ @keyframes pulse {
25
+ 0% { transform: scale(1); }
26
+ 50% { transform: scale(1.05); }
27
+ 100% { transform: scale(1); }
28
+ }
29
+ .pulse {
30
+ animation: pulse 2s infinite;
31
+ }
32
+ </style>
33
+ </head>
34
+ <body class="font-sans bg-gray-100">
35
+ <!-- Navigation Controls -->
36
+ <div class="fixed bottom-6 left-0 right-0 flex justify-center z-50">
37
+ <button id="prevBtn" class="mx-2 p-3 bg-blue-600 text-white rounded-full shadow-lg hover:bg-blue-700 transition">
38
+ <i class="fas fa-arrow-left"></i>
39
+ </button>
40
+ <button id="nextBtn" class="mx-2 p-3 bg-blue-600 text-white rounded-full shadow-lg hover:bg-blue-700 transition">
41
+ <i class="fas fa-arrow-right"></i>
42
+ </button>
43
+ </div>
44
+
45
+ <!-- Progress Bar -->
46
+ <div class="fixed top-0 left-0 right-0 h-1 bg-gray-200 z-50">
47
+ <div id="progressBar" class="progress-bar h-full"></div>
48
+ </div>
49
+
50
+ <!-- Slide Indicators -->
51
+ <div class="fixed top-4 right-4 flex z-50">
52
+ <div class="flex space-x-2">
53
+ <div class="w-3 h-3 rounded-full bg-gray-300 slide-indicator" data-slide="0"></div>
54
+ <div class="w-3 h-3 rounded-full bg-gray-300 slide-indicator" data-slide="1"></div>
55
+ <div class="w-3 h-3 rounded-full bg-gray-300 slide-indicator" data-slide="2"></div>
56
+ <div class="w-3 h-3 rounded-full bg-gray-300 slide-indicator" data-slide="3"></div>
57
+ <div class="w-3 h-3 rounded-full bg-gray-300 slide-indicator" data-slide="4"></div>
58
+ <div class="w-3 h-3 rounded-full bg-gray-300 slide-indicator" data-slide="5"></div>
59
+ <div class="w-3 h-3 rounded-full bg-gray-300 slide-indicator" data-slide="6"></div>
60
+ <div class="w-3 h-3 rounded-full bg-gray-300 slide-indicator" data-slide="7"></div>
61
+ <div class="w-3 h-3 rounded-full bg-gray-300 slide-indicator" data-slide="8"></div>
62
+ <div class="w-3 h-3 rounded-full bg-gray-300 slide-indicator" data-slide="9"></div>
63
+ </div>
64
+ </div>
65
+
66
+ <!-- Slide Container -->
67
+ <div class="relative h-screen w-full overflow-hidden">
68
+ <!-- Slide 1: Title Slide -->
69
+ <div class="slide active h-full w-full flex flex-col justify-center items-center p-8 text-center bg-gradient-to-br from-blue-50 to-indigo-100">
70
+ <div class="max-w-4xl">
71
+ <h1 class="text-5xl md:text-7xl font-bold text-blue-800 mb-6">GLP-1 Plasticity</h1>
72
+ <p class="text-xl md:text-2xl text-gray-700 mb-10">Exploring the Neuroplastic Effects of Glucagon-Like Peptide-1</p>
73
+ <div class="flex justify-center">
74
+ <div class="p-4 bg-white rounded-lg shadow-md inline-block">
75
+ <i class="fas fa-brain text-4xl text-indigo-600 mb-2"></i>
76
+ <p class="text-gray-600">Neuroscience Presentation</p>
77
+ </div>
78
+ </div>
79
+ </div>
80
+ </div>
81
+
82
+ <!-- Slide 2: GLP-1 Overview -->
83
+ <div class="slide h-full w-full flex items-center p-8 bg-gradient-to-br from-green-50 to-teal-100">
84
+ <div class="max-w-6xl mx-auto grid md:grid-cols-2 gap-10 items-center">
85
+ <div>
86
+ <h2 class="text-4xl font-bold text-teal-800 mb-4">What is GLP-1?</h2>
87
+ <ul class="space-y-4 text-lg text-gray-700">
88
+ <li class="flex items-start">
89
+ <i class="fas fa-check-circle text-teal-500 mt-1 mr-2"></i>
90
+ <span>Glucagon-like peptide-1 (GLP-1) is an incretin hormone</span>
91
+ </li>
92
+ <li class="flex items-start">
93
+ <i class="fas fa-check-circle text-teal-500 mt-1 mr-2"></i>
94
+ <span>Produced in intestinal L-cells and brainstem neurons</span>
95
+ </li>
96
+ <li class="flex items-start">
97
+ <i class="fas fa-check-circle text-teal-500 mt-1 mr-2"></i>
98
+ <span>Primarily known for glucose regulation and incretin effects</span>
99
+ </li>
100
+ <li class="flex items-start">
101
+ <i class="fas fa-check-circle text-teal-500 mt-1 mr-2"></i>
102
+ <span>Emerging evidence for neuroprotective and neurotrophic effects</span>
103
+ </li>
104
+ </ul>
105
+ </div>
106
+ <div class="bg-white p-6 rounded-xl shadow-lg">
107
+ <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/b/b2/GLP-1_physiology2.svg/1200px-GLP-1_physiology2.svg.png" alt="GLP-1 Physiology" class="rounded-lg w-full h-auto">
108
+ </div>
109
+ </div>
110
+ </div>
111
+
112
+ <!-- Slide 3: GLP-1 and Neuroplasticity -->
113
+ <div class="slide h-full w-full flex items-center p-8 bg-gradient-to-br from-purple-50 to-indigo-100">
114
+ <div class="max-w-4xl mx-auto">
115
+ <h2 class="text-4xl font-bold text-indigo-800 mb-6">GLP-1 and Neuroplasticity</h2>
116
+ <div class="grid md:grid-cols-3 gap-6 mb-10">
117
+ <div class="bg-white p-5 rounded-lg shadow-md text-center pulse">
118
+ <i class="fas fa-seedling text-4xl text-green-500 mb-3"></i>
119
+ <h3 class="font-semibold text-lg mb-2">Synaptic Plasticity</h3>
120
+ <p class="text-gray-600">Enhances LTP and modulates synaptic strength</p>
121
+ </div>
122
+ <div class="bg-white p-5 rounded-lg shadow-md text-center pulse">
123
+ <i class="fas fa-network-wired text-4xl text-blue-500 mb-3"></i>
124
+ <h3 class="font-semibold text-lg mb-2">Neurogenesis</h3>
125
+ <p class="text-gray-600">Promotes neuronal proliferation and differentiation</p>
126
+ </div>
127
+ <div class="bg-white p-5 rounded-lg shadow-md text-center pulse">
128
+ <i class="fas fa-shield-alt text-4xl text-purple-500 mb-3"></i>
129
+ <h3 class="font-semibold text-lg mb-2">Neuroprotection</h3>
130
+ <p class="text-gray-600">Reduces oxidative stress and inflammation</p>
131
+ </div>
132
+ </div>
133
+ <div class="bg-indigo-100 p-4 rounded-lg border-l-4 border-indigo-500">
134
+ <p class="text-indigo-800"><i class="fas fa-info-circle mr-2"></i> GLP-1 receptors are widely expressed in the brain, including hippocampus and cortex - key areas for learning and memory.</p>
135
+ </div>
136
+ </div>
137
+ </div>
138
+
139
+ <!-- Slide 4: Molecular Mechanisms -->
140
+ <div class="slide h-full w-full flex items-center p-8 bg-gradient-to-br from-red-50 to-pink-100">
141
+ <div class="max-w-6xl mx-auto">
142
+ <h2 class="text-4xl font-bold text-pink-800 mb-8">Molecular Mechanisms</h2>
143
+ <div class="grid md:grid-cols-2 gap-10">
144
+ <div>
145
+ <h3 class="text-2xl font-semibold text-pink-700 mb-4">Signaling Pathways</h3>
146
+ <ul class="space-y-4 text-gray-700">
147
+ <li class="flex">
148
+ <span class="bg-pink-600 text-white rounded-full w-6 h-6 flex items-center justify-center mr-3 flex-shrink-0">1</span>
149
+ <span>Activation of GLP-1R (G-protein coupled receptor)</span>
150
+ </li>
151
+ <li class="flex">
152
+ <span class="bg-pink-600 text-white rounded-full w-6 h-6 flex items-center justify-center mr-3 flex-shrink-0">2</span>
153
+ <span>cAMP/PKA and PI3K/Akt pathway activation</span>
154
+ </li>
155
+ <li class="flex">
156
+ <span class="bg-pink-600 text-white rounded-full w-6 h-6 flex items-center justify-center mr-3 flex-shrink-0">3</span>
157
+ <span>BDNF upregulation and TrkB signaling</span>
158
+ </li>
159
+ <li class="flex">
160
+ <span class="bg-pink-600 text-white rounded-full w-6 h-6 flex items-center justify-center mr-3 flex-shrink-0">4</span>
161
+ <span>CREB phosphorylation and gene transcription</span>
162
+ </li>
163
+ </ul>
164
+ </div>
165
+ <div class="bg-white p-4 rounded-lg shadow-lg">
166
+ <div class="relative h-full w-full">
167
+ <div class="absolute inset-0 flex items-center justify-center">
168
+ <i class="fas fa-atom text-6xl text-pink-300 opacity-50"></i>
169
+ </div>
170
+ <div class="relative flex flex-col items-center">
171
+ <div class="w-16 h-16 rounded-full bg-pink-500 flex items-center justify-center text-white mb-3">
172
+ <i class="fas fa-dna"></i>
173
+ </div>
174
+ <div class="w-32 h-32 rounded-full border-4 border-pink-300 flex items-center justify-center text-pink-500 mb-3">
175
+ <i class="fas fa-project-diagram text-3xl"></i>
176
+ </div>
177
+ <div class="w-48 h-48 rounded-full border-8 border-pink-200 flex items-center justify-center">
178
+ <div class="text-center">
179
+ <i class="fas fa-brain text-4xl text-pink-600 mb-2"></i>
180
+ <p class="text-xs font-semibold text-pink-700">Neuronal Plasticity</p>
181
+ </div>
182
+ </div>
183
+ </div>
184
+ </div>
185
+ </div>
186
+ </div>
187
+ </div>
188
+ </div>
189
+
190
+ <!-- Slide 5: Therapeutic Implications -->
191
+ <div class="slide h-full w-full flex items-center p-8 bg-gradient-to-br from-yellow-50 to-amber-100">
192
+ <div class="max-w-5xl mx-auto">
193
+ <h2 class="text-4xl font-bold text-amber-800 mb-8">Therapeutic Implications</h2>
194
+ <div class="grid md:grid-cols-3 gap-6">
195
+ <div class="bg-white rounded-xl shadow-md overflow-hidden">
196
+ <div class="bg-amber-500 p-4 text-white font-semibold">
197
+ <i class="fas fa-brain mr-2"></i> Alzheimer's Disease
198
+ </div>
199
+ <div class="p-4">
200
+ <p class="text-gray-700">GLP-1 analogs show potential in reducing amyloid-β plaques and improving cognitive function.</p>
201
+ </div>
202
+ </div>
203
+ <div class="bg-white rounded-xl shadow-md overflow-hidden">
204
+ <div class="bg-amber-600 p-4 text-white font-semibold">
205
+ <i class="fas fa-parking mr-2"></i> Parkinson's Disease
206
+ </div>
207
+ <div class="p-4">
208
+ <p class="text-gray-700">Neuroprotective effects may help preserve dopaminergic neurons and motor function.</p>
209
+ </div>
210
+ </div>
211
+ <div class="bg-white rounded-xl shadow-md overflow-hidden">
212
+ <div class="bg-amber-700 p-4 text-white font-semibold">
213
+ <i class="fas fa-bolt mr-2"></i> Stroke Recovery
214
+ </div>
215
+ <div class="p-4">
216
+ <p class="text-gray-700">Enhances neuroplasticity during rehabilitation and reduces infarct volume.</p>
217
+ </div>
218
+ </div>
219
+ </div>
220
+ <div class="mt-8 bg-amber-100 p-4 rounded-lg border-l-4 border-amber-400">
221
+ <p class="text-amber-900"><i class="fas fa-flask mr-2"></i> Several clinical trials are currently investigating GLP-1 analogs (e.g., exenatide, liraglutide) for neurodegenerative disorders.</p>
222
+ </div>
223
+ </div>
224
+ </div>
225
+
226
+ <!-- Slide 6: Animal Studies -->
227
+ <div class="slide h-full w-full flex items-center p-8 bg-gradient-to-br from-blue-50 to-cyan-100">
228
+ <div class="max-w-6xl mx-auto">
229
+ <h2 class="text-4xl font-bold text-cyan-800 mb-8">Evidence from Animal Studies</h2>
230
+ <div class="grid md:grid-cols-2 gap-8">
231
+ <div>
232
+ <div class="bg-white p-5 rounded-lg shadow-lg mb-6">
233
+ <div class="flex items-start">
234
+ <div class="bg-cyan-100 p-3 rounded-full mr-4">
235
+ <i class="fas fa-microscope text-cyan-600"></i>
236
+ </div>
237
+ <div>
238
+ <h3 class="font-semibold text-lg mb-2">Hippocampal Plasticity</h3>
239
+ <p class="text-gray-700">GLP-1 analogs enhance LTP in hippocampal slices and improve spatial memory in rodents.</p>
240
+ </div>
241
+ </div>
242
+ </div>
243
+ <div class="bg-white p-5 rounded-lg shadow-lg">
244
+ <div class="flex items-start">
245
+ <div class="bg-cyan-100 p-3 rounded-full mr-4">
246
+ <i class="fas fa-dna text-cyan-600"></i>
247
+ </div>
248
+ <div>
249
+ <h3 class="font-semibold text-lg mb-2">Molecular Changes</h3>
250
+ <p class="text-gray-700">Upregulation of synaptic proteins (PSD-95, synaptophysin) and BDNF in treated animals.</p>
251
+ </div>
252
+ </div>
253
+ </div>
254
+ </div>
255
+ <div>
256
+ <div class="bg-white p-5 rounded-lg shadow-lg mb-6">
257
+ <div class="flex items-start">
258
+ <div class="bg-cyan-100 p-3 rounded-full mr-4">
259
+ <i class="fas fa-brain text-cyan-600"></i>
260
+ </div>
261
+ <div>
262
+ <h3 class="font-semibold text-lg mb-2">Neuroprotection</h3>
263
+ <p class="text-gray-700">Reduced neuronal loss in models of stroke, Alzheimer's, and Parkinson's disease.</p>
264
+ </div>
265
+ </div>
266
+ </div>
267
+ <div class="bg-white p-5 rounded-lg shadow-lg">
268
+ <div class="flex items-start">
269
+ <div class="bg-cyan-100 p-3 rounded-full mr-4">
270
+ <i class="fas fa-seedling text-cyan-600"></i>
271
+ </div>
272
+ <div>
273
+ <h3 class="font-semibold text-lg mb-2">Neurogenesis</h3>
274
+ <p class="text-gray-700">Increased proliferation of neural progenitor cells in the subventricular zone and dentate gyrus.</p>
275
+ </div>
276
+ </div>
277
+ </div>
278
+ </div>
279
+ </div>
280
+ </div>
281
+ </div>
282
+
283
+ <!-- Slide 7: Clinical Evidence -->
284
+ <div class="slide h-full w-full flex items-center p-8 bg-gradient-to-br from-green-50 to-emerald-100">
285
+ <div class="max-w-5xl mx-auto">
286
+ <h2 class="text-4xl font-bold text-emerald-800 mb-8">Clinical Evidence</h2>
287
+ <div class="overflow-hidden rounded-xl shadow-lg bg-white">
288
+ <table class="min-w-full">
289
+ <thead class="bg-emerald-600 text-white">
290
+ <tr>
291
+ <th class="py-3 px-4 text-left">Study</th>
292
+ <th class="py-3 px-4 text-left">Population</th>
293
+ <th class="py-3 px-4 text-left">Findings</th>
294
+ </tr>
295
+ </thead>
296
+ <tbody class="divide-y divide-gray-200">
297
+ <tr>
298
+ <td class="py-3 px-4">Exenatide-PD</td>
299
+ <td class="py-3 px-4">Parkinson's patients</td>
300
+ <td class="py-3 px-4">Improved motor scores (UPDRS) after 12 months</td>
301
+ </tr>
302
+ <tr class="bg-emerald-50">
303
+ <td class="py-3 px-4">ELAD Trial</td>
304
+ <td class="py-3 px-4">Early Alzheimer's</td>
305
+ <td class="py-3 px-4">Slowed cognitive decline vs placebo</td>
306
+ </tr>
307
+ <tr>
308
+ <td class="py-3 px-4">Liraglutide-AD</td>
309
+ <td class="py-3 px-4">Alzheimer's patients</td>
310
+ <td class="py-3 px-4">Reduced brain atrophy on MRI</td>
311
+ </tr>
312
+ <tr class="bg-emerald-50">
313
+ <td class="py-3 px-4">Meta-analysis</td>
314
+ <td class="py-3 px-4">Type 2 Diabetes</td>
315
+ <td class="py-3 px-4">Lower dementia incidence in GLP-1 users</td>
316
+ </tr>
317
+ </tbody>
318
+ </table>
319
+ </div>
320
+ <div class="mt-6 p-4 bg-emerald-100 rounded-lg">
321
+ <p class="text-emerald-800"><i class="fas fa-stethoscope mr-2"></i> While promising, larger phase 3 trials are needed to confirm efficacy in neurodegenerative diseases.</p>
322
+ </div>
323
+ </div>
324
+ </div>
325
+
326
+ <!-- Slide 8: Current Limitations -->
327
+ <div class="slide h-full w-full flex items-center p-8 bg-gradient-to-br from-gray-50 to-blue-gray-100">
328
+ <div class="max-w-4xl mx-auto">
329
+ <h2 class="text-4xl font-bold text-gray-800 mb-8">Current Limitations</h2>
330
+ <div class="space-y-6">
331
+ <div class="flex items-start">
332
+ <div class="bg-gray-200 p-3 rounded-full mr-4">
333
+ <i class="fas fa-question text-gray-700"></i>
334
+ </div>
335
+ <div>
336
+ <h3 class="font-semibold text-lg text-gray-800">Blood-Brain Barrier Penetration</h3>
337
+ <p class="text-gray-600">Most GLP-1 analogs have limited ability to cross the BBB in therapeutic concentrations</p>
338
+ </div>
339
+ </div>
340
+ <div class="flex items-start">
341
+ <div class="bg-gray-200 p-3 rounded-full mr-4">
342
+ <i class="fas fa-clock text-gray-700"></i>
343
+ </div>
344
+ <div>
345
+ <h3 class="font-semibold text-lg text-gray-800">Long-term Effects Unknown</h3>
346
+ <p class="text-gray-600">Neuroplasticity changes may require sustained treatment over years</p>
347
+ </div>
348
+ </div>
349
+ <div class="flex items-start">
350
+ <div class="bg-gray-200 p-3 rounded-full mr-4">
351
+ <i class="fas fa-puzzle-piece text-gray-700"></i>
352
+ </div>
353
+ <div>
354
+ <h3 class="font-semibold text-lg text-gray-800">Mechanistic Complexity</h3>
355
+ <p class="text-gray-600">Precise pathways mediating neuroplastic effects not fully elucidated</p>
356
+ </div>
357
+ </div>
358
+ <div class="flex items-start">
359
+ <div class="bg-gray-200 p-3 rounded-full mr-4">
360
+ <i class="fas fa-tablets text-gray-700"></i>
361
+ </div>
362
+ <div>
363
+ <h3 class="font-semibold text-lg text-gray-800">Side Effects</h3>
364
+ <p class="text-gray-600">Gastrointestinal effects may limit tolerability in some patients</p>
365
+ </div>
366
+ </div>
367
+ </div>
368
+ </div>
369
+ </div>
370
+
371
+ <!-- Slide 9: Future Directions -->
372
+ <div class="slide h-full w-full flex items-center p-8 bg-gradient-to-br from-indigo-50 to-violet-100">
373
+ <div class="max-w-6xl mx-auto">
374
+ <h2 class="text-4xl font-bold text-violet-800 mb-8">Future Directions</h2>
375
+ <div class="grid md:grid-cols-2 gap-8">
376
+ <div class="bg-white p-6 rounded-xl shadow-md">
377
+ <div class="flex items-center mb-4">
378
+ <div class="bg-violet-600 p-3 rounded-full text-white mr-4">
379
+ <i class="fas fa-rocket"></i>
380
+ </div>
381
+ <h3 class="text-xl font-semibold text-violet-800">Next-Gen Analogs</h3>
382
+ </div>
383
+ <p class="text-gray-700">Developing GLP-1 analogs with enhanced BBB penetration and CNS selectivity could improve efficacy for neurodegenerative disorders.</p>
384
+ </div>
385
+ <div class="bg-white p-6 rounded-xl shadow-md">
386
+ <div class="flex items-center mb-4">
387
+ <div class="bg-violet-500 p-3 rounded-full text-white mr-4">
388
+ <i class="fas fa-cogs"></i>
389
+ </div>
390
+ <h3 class="text-xl font-semibold text-violet-800">Combination Therapies</h3>
391
+ </div>
392
+ <p class="text-gray-700">Exploring synergistic effects with other neuroprotective agents (e.g., BDNF mimetics, anti-inflammatories) may enhance plasticity.</p>
393
+ </div>
394
+ <div class="bg-white p-6 rounded-xl shadow-md">
395
+ <div class="flex items-center mb-4">
396
+ <div class="bg-violet-400 p-3 rounded-full text-white mr-4">
397
+ <i class="fas fa-chart-line"></i>
398
+ </div>
399
+ <h3 class="text-xl font-semibold text-violet-800">Biomarkers</h3>
400
+ </div>
401
+ <p class="text-gray-700">Identifying reliable biomarkers of GLP-1-mediated neuroplasticity could help personalize treatment approaches.</p>
402
+ </div>
403
+ <div class="bg-white p-6 rounded-xl shadow-md">
404
+ <div class="flex items-center mb-4">
405
+ <div class="bg-violet-300 p-3 rounded-full text-white mr-4">
406
+ <i class="fas fa-recycle"></i>
407
+ </div>
408
+ <h3 class="text-xl font-semibold text-violet-800">Rehabilitation</h3>
409
+ </div>
410
+ <p class="text-gray-700">Investigating how GLP-1 analogs can augment the effects of cognitive rehabilitation and physical therapy.</p>
411
+ </div>
412
+ </div>
413
+ </div>
414
+ </div>
415
+
416
+ <!-- Slide 10: Conclusion -->
417
+ <div class="slide h-full w-full flex flex-col items-center justify-center p-8 bg-gradient-to-br from-blue-900 to-indigo-900 text-white text-center">
418
+ <div class="max-w-3xl">
419
+ <h2 class="text-5xl font-bold mb-8">Key Takeaways</h2>
420
+ <div class="space-y-6 mb-10 text-left">
421
+ <div class="flex items-start">
422
+ <div class="bg-blue-600 p-2 rounded-full mr-4">
423
+ <i class="fas fa-check"></i>
424
+ </div>
425
+ <p class="text-xl">GLP-1 exhibits neuroplastic effects through multiple molecular mechanisms</p>
426
+ </div>
427
+ <div class="flex items-start">
428
+ <div class="bg-blue-600 p-2 rounded-full mr-4">
429
+ <i class="fas fa-check"></i>
430
+ </div>
431
+ <p class="text-xl">Preclinical evidence strongly supports neuroprotective and plasticity-enhancing properties</p>
432
+ </div>
433
+ <div class="flex items-start">
434
+ <div class="bg-blue-600 p-2 rounded-full mr-4">
435
+ <i class="fas fa-check"></i>
436
+ </div>
437
+ <p class="text-xl">Early clinical trials show promise for neurodegenerative disorders</p>
438
+ </div>
439
+ <div class="flex items-start">
440
+ <div class="bg-blue-600 p-2 rounded-full mr-4">
441
+ <i class="fas fa-check"></i>
442
+ </div>
443
+ <p class="text-xl">GLP-1-based therapies may represent a novel approach to enhance brain plasticity</p>
444
+ </div>
445
+ </div>
446
+ <div class="mt-8 pt-6 border-t border-blue-300">
447
+ <p class="text-blue-200">Thank you for your attention!</p>
448
+ <p class="text-blue-300 mt-2">Questions?</p>
449
+ </div>
450
+ </div>
451
+ </div>
452
+ </div>
453
+
454
+ <script>
455
+ document.addEventListener('DOMContentLoaded', function() {
456
+ const slides = document.querySelectorAll('.slide');
457
+ const prevBtn = document.getElementById('prevBtn');
458
+ const nextBtn = document.getElementById('nextBtn');
459
+ const progressBar = document.getElementById('progressBar');
460
+ const indicators = document.querySelectorAll('.slide-indicator');
461
+ let currentSlide = 0;
462
+ const totalSlides = slides.length;
463
+
464
+ // Initialize first slide
465
+ showSlide(currentSlide);
466
+
467
+ // Next button click handler
468
+ nextBtn.addEventListener('click', function() {
469
+ if (currentSlide < totalSlides - 1) {
470
+ currentSlide++;
471
+ showSlide(currentSlide);
472
+ }
473
+ });
474
+
475
+ // Previous button click handler
476
+ prevBtn.addEventListener('click', function() {
477
+ if (currentSlide > 0) {
478
+ currentSlide--;
479
+ showSlide(currentSlide);
480
+ }
481
+ });
482
+
483
+ // Indicator click handler
484
+ indicators.forEach((indicator, index) => {
485
+ indicator.addEventListener('click', function() {
486
+ currentSlide = index;
487
+ showSlide(currentSlide);
488
+ });
489
+ });
490
+
491
+ // Keyboard navigation
492
+ document.addEventListener('keydown', function(e) {
493
+ if (e.key === 'ArrowRight') {
494
+ if (currentSlide < totalSlides - 1) {
495
+ currentSlide++;
496
+ showSlide(currentSlide);
497
+ }
498
+ } else if (e.key === 'ArrowLeft') {
499
+ if (currentSlide > 0) {
500
+ currentSlide--;
501
+ showSlide(currentSlide);
502
+ }
503
+ }
504
+ });
505
+
506
+ // Show specific slide
507
+ function showSlide(index) {
508
+ // Hide all slides
509
+ slides.forEach(slide => {
510
+ slide.classList.remove('active');
511
+ });
512
+
513
+ // Show current slide
514
+ slides[index].classList.add('active');
515
+
516
+ // Update progress bar
517
+ const progress = ((index + 1) / totalSlides) * 100;
518
+ progressBar.style.width = `${progress}%`;
519
+
520
+ // Update indicators
521
+ indicators.forEach((indicator, i) => {
522
+ if (i === index) {
523
+ indicator.classList.remove('bg-gray-300');
524
+ indicator.classList.add('bg-blue-500');
525
+ } else {
526
+ indicator.classList.remove('bg-blue-500');
527
+ indicator.classList.add('bg-gray-300');
528
+ }
529
+ });
530
+
531
+ // Disable/enable navigation buttons
532
+ prevBtn.disabled = index === 0;
533
+ nextBtn.disabled = index === totalSlides - 1;
534
+ }
535
+ });
536
+ </script>
537
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=venezianof/ricercheaa" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
538
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ glp1 plasticita 10slides