vera-ai / index.html
mengzaiqiao's picture
Add 2 files
ac0e1c4 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vera AI - GP Consultation Summarization Pipeline</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
background-color: #f5f7fa;
color: #333;
padding: 40px 20px;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
.vera-ai {
text-align: center;
margin-bottom: 15px;
position: relative;
}
.vera-ai-text {
display: inline-block;
font-size: 2.8rem;
font-weight: 700;
color: #2c3e50;
position: relative;
background: linear-gradient(135deg, #3498db, #2ecc71);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
padding: 0 20px;
}
.vera-ai-text::before,
.vera-ai-text::after {
content: "";
position: absolute;
top: 50%;
width: 60px;
height: 3px;
background: linear-gradient(90deg, #3498db, #2ecc71);
}
.vera-ai-text::before {
right: 100%;
}
.vera-ai-text::after {
left: 100%;
}
.ai-badge {
display: inline-block;
background: #e74c3c;
color: white;
font-size: 0.9rem;
padding: 3px 10px;
border-radius: 20px;
position: absolute;
top: 0;
right: -10px;
transform: translateX(100%);
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { transform: translateX(100%) scale(1); }
50% { transform: translateX(100%) scale(1.1); }
100% { transform: translateX(100%) scale(1); }
}
h1 {
text-align: center;
margin-bottom: 40px;
color: #2c3e50;
font-size: 2.2rem;
position: relative;
font-weight: 600;
}
h1::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 100px;
height: 4px;
background: linear-gradient(to right, #3498db, #2ecc71);
border-radius: 2px;
}
.pipeline {
display: flex;
justify-content: space-between;
position: relative;
margin-bottom: 60px;
}
.pipeline::before {
content: '';
position: absolute;
top: 80px;
left: 50px;
right: 50px;
height: 8px;
background: linear-gradient(90deg, #3498db, #2ecc71);
border-radius: 4px;
z-index: 1;
}
.stage {
width: 30%;
background: white;
border-radius: 12px;
padding: 25px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
position: relative;
z-index: 2;
transition: transform 0.3s ease;
}
.stage:hover {
transform: translateY(-10px);
}
.stage-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, #3498db, #2ecc71);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
color: white;
font-size: 30px;
box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}
.stage-title {
text-align: center;
margin-bottom: 20px;
color: #2c3e50;
font-weight: 600;
font-size: 1.2rem;
}
.stage-content {
background-color: #f8f9fa;
border-radius: 8px;
padding: 15px;
min-height: 200px;
}
/* Stage 1 - Consultation */
.consultation {
display: flex;
justify-content: space-around;
align-items: flex-end;
height: 100%;
}
.person {
text-align: center;
}
.person-icon {
width: 60px;
height: 60px;
background: #3498db;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 10px;
color: white;
font-size: 25px;
}
.patient .person-icon {
background: #3498db;
}
.doctor .person-icon {
background: #e74c3c;
}
.person-title {
font-size: 0.9rem;
color: #7f8c8d;
}
.voice-wave {
display: flex;
justify-content: center;
margin-top: 20px;
gap: 3px;
height: 20px;
align-items: flex-end;
}
.voice-bar {
width: 4px;
background: #3498db;
border-radius: 2px;
animation: voice-animation 1.5s infinite ease-in-out;
}
@keyframes voice-animation {
0%, 100% { height: 5px; }
50% { height: 20px; }
}
.voice-bar:nth-child(1) { animation-delay: 0.1s; }
.voice-bar:nth-child(2) { animation-delay: 0.3s; }
.voice-bar:nth-child(3) { animation-delay: 0.5s; }
.voice-bar:nth-child(4) { animation-delay: 0.2s; }
.voice-bar:nth-child(5) { animation-delay: 0.4s; }
/* Stage 2 - Transcription */
.transcript {
font-size: 0.85rem;
line-height: 1.5;
}
.highlight {
background-color: #ffeaa7;
padding: 1px 4px;
border-radius: 3px;
font-weight: 500;
}
.snomed {
background-color: #a5b1c2;
color: #1e272e;
position: relative;
}
.snomed::after {
content: 'SNOMED CT';
position: absolute;
top: -20px;
left: 0;
font-size: 0.6rem;
background: #1e272e;
color: white;
padding: 2px 4px;
border-radius: 2px;
}
/* Stage 3 - Structured Notes */
.notes-item {
margin-bottom: 10px;
padding-bottom: 10px;
border-bottom: 1px dashed #ddd;
}
.notes-label {
font-weight: 600;
color: #2c3e50;
font-size: 0.85rem;
margin-bottom: 5px;
display: flex;
align-items: center;
}
.notes-label i {
margin-right: 8px;
color: #3498db;
font-size: 0.9rem;
}
.notes-value {
font-size: 0.8rem;
color: #7f8c8d;
padding-left: 22px;
}
.arrow {
position: absolute;
top: -30px;
right: -30px;
font-size: 24px;
color: #95a5a6;
z-index: 3;
}
@media (max-width: 768px) {
.pipeline {
flex-direction: column;
align-items: center;
}
.pipeline::before {
display: none;
}
.stage {
width: 90%;
margin-bottom: 40px;
}
.arrow {
display: none;
}
.vera-ai-text {
font-size: 2rem;
}
.vera-ai-text::before,
.vera-ai-text::after {
width: 20px;
}
.ai-badge {
font-size: 0.7rem;
top: -5px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="vera-ai">
<div class="vera-ai-text">
Vera AI
<span class="ai-badge">AI-Powered</span>
</div>
</div>
<h1>GP Consultation Summarization Pipeline</h1>
<div class="pipeline">
<div class="stage">
<div class="stage-icon">
<i class="fas fa-comments"></i>
</div>
<h2 class="stage-title">1. Consultation</h2>
<div class="stage-content">
<div class="consultation">
<div class="person patient">
<div class="person-icon">
<i class="fas fa-user"></i>
</div>
<div class="person-title">Patient</div>
<div class="voice-wave">
<div class="voice-bar"></div>
<div class="voice-bar"></div>
<div class="voice-bar"></div>
<div class="voice-bar"></div>
<div class="voice-bar"></div>
</div>
</div>
<div class="person doctor">
<div class="person-icon">
<i class="fas fa-user-md"></i>
</div>
<div class="person-title">Doctor</div>
<div class="voice-wave">
<div class="voice-bar"></div>
<div class="voice-bar"></div>
<div class="voice-bar"></div>
<div class="voice-bar"></div>
<div class="voice-bar"></div>
</div>
</div>
</div>
</div>
</div>
<i class="fas fa-arrow-right arrow"></i>
<div class="stage">
<div class="stage-icon">
<i class="fas fa-keyboard"></i>
</div>
<h2 class="stage-title">2. Transcription & Analysis</h2>
<div class="stage-content">
<div class="transcript">
<p>
<span class="highlight">PATIENT:</span> I've been experiencing <span class="highlight snomed">headache</span> for the past 3 days.
It's particularly bad in the mornings. Also some <span class="highlight snomed">nausea</span> but no vomiting.
</p>
<p>
<span class="highlight">GP:</span> Any <span class="highlight">history of migraines</span>? On a scale of 1-10, how would you rate the pain?
Any <span class="highlight snomed">visual disturbances</span> or <span class="highlight">sensitivity to light/sound</span>?
</p>
<p>
<span class="highlight">PATIENT:</span> Pain is about <span class="highlight">7/10</span>. No visual issues but <span class="highlight snomed">photophobia</span>.
My mother had <span class="highlight">migraine with aura</span>.
</p>
</div>
</div>
</div>
<i class="fas fa-arrow-right arrow"></i>
<div class="stage">
<div class="stage-icon">
<i class="fas fa-file-medical"></i>
</div>
<h2 class="stage-title">3. Structured Notes</h2>
<div class="stage-content">
<div class="notes-item">
<div class="notes-label">
<i class="fas fa-head-side-virus"></i>
Presenting Symptoms:
</div>
<div class="notes-value">Headache (3 days), nausea, photophobia</div>
</div>
<div class="notes-item">
<div class="notes-label">
<i class="fas fa-heartbeat"></i>
Pain Scale:
</div>
<div class="notes-value">7/10, worse in mornings</div>
</div>
<div class="notes-item">
<div class="notes-label">
<i class="fas fa-dna"></i>
Family History:
</div>
<div class="notes-value">Mother - Migraine with aura</div>
</div>
<div class="notes-item">
<div class="notes-label">
<i class="fas fa-tag"></i>
SNOMED CT Codes:
</div>
<div class="notes-value">Headache (25064002), Nausea (422587007), Photophobia (248590008)</div>
</div>
</div>
</div>
</div>
</div>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: absolute; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">This website has been generated by <a href="https://enzostvs-deepsite.hf.space" style="color: #fff;" target="_blank" >DeepSite</a> <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;"></p></body>
</html>