File size: 4,513 Bytes
303d1cf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Research History | 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="book" class="text-indigo-600 mr-2"></i>
                <h1 class="text-2xl font-bold text-gray-800">Research History</h1>
            </div>
            
            <div class="bg-white rounded-xl shadow-md overflow-hidden">
                <div class="grid grid-cols-1 md:grid-cols-3 gap-0">
                    <!-- Sidebar -->
                    <div class="bg-indigo-50 p-4 border-r border-indigo-100">
                        <div class="flex items-center mb-4">
                            <i data-feather="search" class="text-indigo-600 mr-2"></i>
                            <h2 class="font-semibold text-gray-800">Saved Queries</h2>
                        </div>
                        <div class="space-y-2">
                            <div class="p-2 rounded-lg bg-white shadow-sm cursor-pointer hover:bg-indigo-100">
                                <p class="font-medium">AI in healthcare</p>
                                <p class="text-xs text-gray-500">2 days ago</p>
                            </div>
                            <div class="p-2 rounded-lg cursor-pointer hover:bg-indigo-100">
                                <p class="font-medium">Blockchain security</p>
                                <p class="text-xs text-gray-500">1 week ago</p>
                            </div>
                            <div class="p-2 rounded-lg cursor-pointer hover:bg-indigo-100">
                                <p class="font-medium">Quantum computing</p>
                                <p class="text-xs text-gray-500">2 weeks ago</p>
                            </div>
                        </div>
                    </div>
                    
                    <!-- Main content -->
                    <div class="md:col-span-2 p-6">
                        <div class="flex justify-between items-center mb-6">
                            <h3 class="text-lg font-semibold">Research Results: "AI in healthcare"</h3>
                            <button class="text-indigo-600 hover:text-indigo-800">
                                <i data-feather="download"></i>
                            </button>
                        </div>
                        
                        <div class="prose max-w-none">
                            <h4>Summary</h4>
                            <p>Artificial Intelligence is transforming healthcare through improved diagnostics, personalized treatment plans, and operational efficiencies...</p>
                            
                            <h4 class="mt-4">Sources</h4>
                            <ul>
                                <li><a href="#" class="text-indigo-600 hover:underline">WHO Report on AI in Global Health</a></li>
                                <li><a href="#" class="text-indigo-600 hover:underline">Nature Medicine: AI Diagnostics Study</a></li>
                                <li><a href="#" class="text-indigo-600 hover:underline">Healthcare IT News: Operational Applications</a></li>
                            </ul>
                            
                            <h4 class="mt-4">Key Findings</h4>
                            <ul>
                                <li>AI can reduce diagnostic errors by up to 30%</li>
                                <li>Personalized treatment algorithms improve outcomes</li>
                                <li>Administrative automation saves billions annually</li>
                            </ul>
                        </div>
                    </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>