Skip to content

Commit a368be8

Browse files
committed
add showcase
1 parent 43386d4 commit a368be8

File tree

1 file changed

+80
-0
lines changed

1 file changed

+80
-0
lines changed

internal/website/index.html

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,67 @@
140140
.stats a:hover {
141141
text-decoration: underline;
142142
}
143+
.showcase {
144+
margin: 2.5rem 0 1.5rem;
145+
text-align: left;
146+
}
147+
.showcase h2 {
148+
font-size: 1.35rem;
149+
margin-bottom: 1.25rem;
150+
color: #1a1a1a;
151+
text-align: center;
152+
}
153+
.showcase-grid {
154+
display: grid;
155+
grid-template-columns: 1fr;
156+
gap: 1rem;
157+
}
158+
.showcase-item {
159+
background: #f8f9fa;
160+
border: 1px solid #e5e5e5;
161+
border-radius: 8px;
162+
padding: 1.25rem;
163+
transition: all 0.2s;
164+
}
165+
.showcase-item:hover {
166+
border-color: #0366d6;
167+
box-shadow: 0 4px 12px rgba(3,102,214,0.1);
168+
transform: translateY(-2px);
169+
}
170+
.showcase-item h3 {
171+
font-size: 1.1rem;
172+
margin-bottom: 0.5rem;
173+
color: #0366d6;
174+
display: flex;
175+
align-items: center;
176+
gap: 0.5rem;
177+
}
178+
.showcase-item h3 a {
179+
color: #0366d6;
180+
text-decoration: none;
181+
}
182+
.showcase-item h3 a:hover {
183+
text-decoration: underline;
184+
}
185+
.showcase-item p {
186+
font-size: 0.9rem;
187+
color: #555;
188+
margin-bottom: 0.75rem;
189+
line-height: 1.5;
190+
}
191+
.showcase-tags {
192+
display: flex;
193+
gap: 0.5rem;
194+
flex-wrap: wrap;
195+
}
196+
.showcase-tag {
197+
font-size: 0.75rem;
198+
background: white;
199+
color: #666;
200+
padding: 0.25rem 0.6rem;
201+
border-radius: 4px;
202+
border: 1px solid #d0d7de;
203+
}
143204
@media (max-width: 600px) {
144205
.container { padding: 2rem 1.5rem; }
145206
h1 { font-size: 1.5rem; }
@@ -194,6 +255,25 @@ <h1>Go Micro</h1>
194255
<a href="https://pkg.go.dev/go-micro.dev/v5" class="secondary">Reference</a>
195256
</div>
196257

258+
<div class="showcase">
259+
<h2>Built with Go Micro</h2>
260+
<div class="showcase-grid">
261+
<div class="showcase-item">
262+
<h3>
263+
<span>📝</span>
264+
<a href="https://github.com/micro/blog" target="_blank" rel="noopener">Micro Blog</a>
265+
</h3>
266+
<p>A full-featured microblogging platform demonstrating microservices architecture with users, posts, comments, and real-time feeds.</p>
267+
<div class="showcase-tags">
268+
<span class="showcase-tag">Microservices</span>
269+
<span class="showcase-tag">RPC</span>
270+
<span class="showcase-tag">Web UI</span>
271+
<span class="showcase-tag">AGPL 3.0</span>
272+
</div>
273+
</div>
274+
</div>
275+
</div>
276+
197277
<div class="stats">
198278
23K+ stars on <a href="https://github.com/micro/go-micro">GitHub</a> · Production ready · Apache 2.0 Licensed
199279
</div>

0 commit comments

Comments
 (0)