BioNexus / client /public /spaces-landing.html
gaialive's picture
Upload 28 files
ad08f08 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BioNexus Hub - Hugging Face Spaces</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(135deg, #16a34a, #2563eb, #9333ea);
color: white;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
.container {
max-width: 800px;
padding: 2rem;
background: rgba(0, 0, 0, 0.5);
border-radius: 20px;
backdrop-filter: blur(10px);
margin: 1rem;
}
h1 {
font-size: 3rem;
margin-bottom: 1rem;
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
p {
font-size: 1.2rem;
margin-bottom: 2rem;
line-height: 1.6;
}
.btn {
display: inline-block;
padding: 1rem 2rem;
background: white;
color: #16a34a;
font-weight: bold;
font-size: 1.2rem;
border-radius: 50px;
text-decoration: none;
margin: 1rem;
box-shadow: 0 4px 8px rgba(0,0,0,0.3);
transition: all 0.3s ease;
}
.btn:hover {
transform: translateY(-3px);
box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}
.features {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
margin: 2rem 0;
}
.feature {
background: rgba(255, 255, 255, 0.1);
padding: 1rem;
border-radius: 10px;
flex: 1;
min-width: 200px;
}
.feature h3 {
margin-top: 0;
}
footer {
margin-top: 2rem;
font-size: 0.9rem;
opacity: 0.8;
}
</style>
</head>
<body>
<div class="container">
<h1>BioNexus Hub</h1>
<p>A lightweight, regional-to-global digital nexus that connects policymakers, companies, researchers, civil society and communities to accelerate bioeconomy solutions that reduce food loss & waste (FLW).</p>
<div class="features">
<div class="feature">
<h3>📰 News Hub</h3>
<p>Discover regional policy updates and best practices</p>
</div>
<div class="feature">
<h3>📊 Open Data</h3>
<p>Access datasets on cold-chain gaps and processing capacity</p>
</div>
<div class="feature">
<h3>🤝 Matchmaking</h3>
<p>Connect with partners and funders for pilot projects</p>
</div>
</div>
<a href="/app" class="btn">Launch BioNexus Hub</a>
<footer>
<p>BioNexus Hub - Accelerating bioeconomy solutions for food loss & waste reduction</p>
<p>© 2025 BioNexus Hub. All rights reserved.</p>
</footer>
</div>
</body>
</html>