Spaces:
Running
Running
File size: 4,226 Bytes
52fa71f 914d413 52fa71f 914d413 52fa71f 914d413 52fa71f 914d413 52fa71f 914d413 52fa71f 914d413 52fa71f |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Biogram - Free Biomedical Simulations</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="components/simulation-card.js"></script>
</head>
<body class="bg-gray-50">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-8">
<section class="mb-16">
<div class="text-center mb-12">
<h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-4">Biogram - Free Biomedical Labs</h1>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Access premium biomedical simulations from top institutions without login</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<custom-simulation-card
title="CRISPR-Cas9 Lab"
description="Explore gene editing from HHMI BioInteractive"
image="http://static.photos/science/640x360/10"
link="https://www.biointeractive.org/classroom-resources/crispr-cas9-mechanism-applications">
</custom-simulation-card>
<custom-simulation-card
title="Flow Cytometry"
description="Learn cell analysis from Utah Genetics"
image="http://static.photos/medical/640x360/11"
link="https://learn.genetics.utah.edu/content/labs/flowcytometry/">
</custom-simulation-card>
<custom-simulation-card
title="Cancer Research"
description="Interactive cancer labs from LabXchange"
image="http://static.photos/medical/640x360/12"
link="https://www.labxchange.org/library?t=Language%3Aen&t=ItemType%3Ainteractive&q=cancer">
</custom-simulation-card>
</div>
</section>
<section class="bg-white rounded-xl shadow-lg p-8 mb-16">
<h2 class="text-2xl font-bold text-gray-800 mb-6">How It Works</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="text-center">
<div class="bg-blue-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="play" class="text-blue-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Select Simulation</h3>
<p class="text-gray-600">Choose from our collection of biomedical lab simulations</p>
</div>
<div class="text-center">
<div class="bg-green-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="activity" class="text-green-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Interactive Learning</h3>
<p class="text-gray-600">Follow guided procedures with realistic lab tools</p>
</div>
<div class="text-center">
<div class="bg-purple-100 w-16 h-16 rounded-full flex items-center justify-center mx-auto mb-4">
<i data-feather="award" class="text-purple-600"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Test Knowledge</h3>
<p class="text-gray-600">Complete quizzes to reinforce your understanding</p>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script>
feather.replace();
</script>
<script src="script.js"></script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html> |