nmrghe's picture
can you make a proper banner to navigate between pages
a13a24a verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>M!ND Research Group</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/banner.js"></script>
</head>
<body class="bg-gray-50">
<custom-navbar></custom-navbar>
<custom-banner></custom-banner>
<div class="container mx-auto px-4">
<nav class="breadcrumb" aria-label="Breadcrumb">
<ol>
<li><a href="index.html">Home</a></li>
</ol>
</nav>
</div>
<main class="container mx-auto px-4 py-6">
<section class="hero mb-16">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-8 md:mb-0">
<h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-4">
<span class="text-indigo-600">M</span>apping <span class="text-indigo-600">I</span>ntell!gent behavior onto<br>
<span class="text-indigo-600">N</span>eural <span class="text-indigo-600">D</span>ynamics
</h1>
<p class="text-xl text-gray-600 mb-6">At the M!ND Research Group, we bridge cognitive science and neuroscience to understand how intelligence emerges from neural activity through computational modeling and neuroimaging.</p>
<a href="projects.html" class="bg-indigo-600 hover:bg-indigo-700 text-white font-medium py-3 px-6 rounded-lg transition duration-300 inline-flex items-center">
Our Projects <i data-feather="arrow-right" class="ml-2"></i>
</a>
</div>
<div class="md:w-1/2">
<img src="http://static.photos/technology/640x360/42" alt="Neural Dynamics Visualization" class="rounded-lg shadow-xl border border-gray-200">
</div>
</div>
</section>
<section class="highlights mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-8 text-center">Research Highlights</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
<div class="text-indigo-600 mb-4">
<i data-feather="activity" class="w-10 h-10"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Neural Circuits</h3>
<p class="text-gray-600">Mapping the complex networks that underlie cognitive functions and behavior.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
<div class="text-indigo-600 mb-4">
<i data-feather="brain" class="w-10 h-10"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Neurodegeneration</h3>
<p class="text-gray-600">Understanding the mechanisms of diseases like Alzheimer's and Parkinson's.</p>
</div>
<div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition duration-300">
<div class="text-indigo-600 mb-4">
<i data-feather="cpu" class="w-10 h-10"></i>
</div>
<h3 class="text-xl font-semibold mb-3">Neurotechnology</h3>
<p class="text-gray-600">Developing innovative tools to study and interface with the nervous system.</p>
</div>
</div>
</section>
<section class="news mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-8 text-center">Latest News</h2>
<div class="bg-white rounded-xl shadow-md overflow-hidden">
<div class="p-6">
<div class="flex items-center mb-4">
<span class="bg-indigo-100 text-indigo-800 text-xs font-medium px-2.5 py-0.5 rounded">New Publication</span>
<span class="text-gray-500 text-sm ml-4">June 15, 2023</span>
</div>
<h3 class="text-xl font-semibold mb-2">Paper on hippocampal memory circuits published in Nature Neuroscience</h3>
<p class="text-gray-600 mb-4">Our team discovered novel mechanisms of memory consolidation in the hippocampus during sleep.</p>
<a href="publications.html" class="text-indigo-600 hover:text-indigo-800 font-medium inline-flex items-center">
Read more <i data-feather="arrow-right" class="ml-1 w-4 h-4"></i>
</a>
</div>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script>feather.replace();</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>