Spaces:
Running
Running
File size: 4,671 Bytes
ad1dcd6 |
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 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 |
<html><head><base href="https://websim.ai" />
<title>TechHub - Image and Link Dashboard</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f2f5;
color: #333;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
header {
background-color: #2c3e50;
color: white;
padding: 20px 0;
text-align: center;
}
h1 {
margin: 0;
font-size: 2.5em;
}
.dashboard {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 20px;
margin-top: 30px;
}
.card {
background-color: white;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
overflow: hidden;
transition: transform 0.3s ease;
}
.card:hover {
transform: translateY(-5px);
}
.card-image {
width: 100%;
height: 150px;
object-fit: cover;
}
.card-content {
padding: 15px;
}
.card-title {
font-size: 1.2em;
margin: 0 0 10px 0;
}
.card-description {
font-size: 0.9em;
color: #666;
margin-bottom: 15px;
}
.card-link {
display: inline-block;
background-color: #3498db;
color: white;
padding: 8px 15px;
border-radius: 5px;
text-decoration: none;
transition: background-color 0.3s ease;
}
.card-link:hover {
background-color: #2980b9;
}
@media (max-width: 768px) {
.dashboard {
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
}
</style>
</head>
<body>
<header>
<h1>TechHub Dashboard</h1>
</header>
<div class="container">
<div class="dashboard">
<div class="card">
<img src="https://websim.ai/images/ai-generated-circuit.jpg" alt="AI-generated circuit board" class="card-image" width="250" height="150">
<div class="card-content">
<h2 class="card-title">AI in Hardware</h2>
<p class="card-description">Explore the latest advancements in AI-driven hardware design and optimization.</p>
<a href="https://websim.ai/tech/ai-hardware" class="card-link">Learn More</a>
</div>
</div>
<div class="card">
<img src="https://websim.ai/images/quantum-computer.jpg" alt="Quantum computer prototype" class="card-image" width="250" height="150">
<div class="card-content">
<h2 class="card-title">Quantum Computing</h2>
<p class="card-description">Dive into the world of quantum computing and its potential to revolutionize technology.</p>
<a href="https://websim.ai/tech/quantum-computing" class="card-link">Explore</a>
</div>
</div>
<div class="card">
<img src="https://websim.ai/images/blockchain-network.jpg" alt="Blockchain network visualization" class="card-image" width="250" height="150">
<div class="card-content">
<h2 class="card-title">Blockchain Innovation</h2>
<p class="card-description">Discover the latest applications of blockchain technology beyond cryptocurrencies.</p>
<a href="https://websim.ai/tech/blockchain" class="card-link">Discover</a>
</div>
</div>
<div class="card">
<img src="https://websim.ai/images/vr-experience.jpg" alt="Person using VR headset" class="card-image" width="250" height="150">
<div class="card-content">
<h2 class="card-title">VR/AR Frontiers</h2>
<p class="card-description">Experience the cutting-edge developments in virtual and augmented reality technologies.</p>
<a href="https://websim.ai/tech/vr-ar" class="card-link">Experience</a>
</div>
</div>
<div class="card">
<img src="https://websim.ai/images/iot-smart-home.jpg" alt="Smart home IoT devices" class="card-image" width="250" height="150">
<div class="card-content">
<h2 class="card-title">IoT Ecosystems</h2>
<p class="card-description">Learn about the expanding Internet of Things and its impact on daily life.</p>
<a href="https://websim.ai/tech/iot" class="card-link">Connect</a>
</div>
</div>
<div class="card">
<img src="https://websim.ai/images/biotech-lab.jpg" alt="Biotechnology research lab" class="card-image" width="250" height="150">
<div class="card-content">
<h2 class="card-title">Biotech Breakthroughs</h2>
<p class="card-description">Stay updated on the latest advancements in biotechnology and genetic engineering.</p>
<a href="https://websim.ai/tech/biotech" class="card-link">Innovate</a>
</div>
</div>
</div>
</div>
</body></html> |