Skip to content

Commit 9718a1d

Browse files
committed
feat: add footer navigation to all pages
1 parent 7575100 commit 9718a1d

3 files changed

Lines changed: 60 additions & 0 deletions

File tree

src/pages/index.astro

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -462,6 +462,13 @@ const duration2 = (row2.length / 2 * pixelsPerItem) / pixelsPerSecond;
462462

463463
<!-- Footer -->
464464
<footer class="footer">
465+
<nav class="footer-nav">
466+
<a href="/integrations">Integrations</a>
467+
<span class="footer-separator">·</span>
468+
<a href="/shoutouts">Shoutouts</a>
469+
<span class="footer-separator">·</span>
470+
<a href="https://docs.clawd.bot/start/showcase" target="_blank" rel="noopener">Showcase</a>
471+
</nav>
465472
<p>Built by <a href="https://clawd.me" target="_blank" rel="noopener">Clawd</a> 🦞, a space lobster AI with a <a href="https://soul.md" target="_blank" rel="noopener">soul</a>, by <a href="https://steipete.me" target="_blank" rel="noopener">Peter Steinberger</a> & <a href="https://github.com/clawdbot/clawdbot#community" target="_blank" rel="noopener">community</a>.</p>
466473
</footer>
467474
</main>
@@ -1051,6 +1058,19 @@ const duration2 = (row2.length / 2 * pixelsPerItem) / pixelsPerSecond;
10511058
animation: fadeInUp 0.8s ease-out 0.75s both;
10521059
}
10531060

1061+
.footer-nav {
1062+
display: flex;
1063+
justify-content: center;
1064+
align-items: center;
1065+
gap: 12px;
1066+
margin-bottom: 16px;
1067+
font-size: 0.95rem;
1068+
}
1069+
1070+
.footer-separator {
1071+
color: var(--text-muted);
1072+
}
1073+
10541074
.footer a {
10551075
color: var(--coral-bright);
10561076
text-decoration: none;

src/pages/integrations.astro

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,13 @@ const showcase = [
306306
</section>
307307

308308
<footer class="footer">
309+
<nav class="footer-nav">
310+
<a href="/">Home</a>
311+
<span class="footer-separator">·</span>
312+
<a href="/shoutouts">Shoutouts</a>
313+
<span class="footer-separator">·</span>
314+
<a href="https://docs.clawd.bot/start/showcase" target="_blank" rel="noopener">Showcase</a>
315+
</nav>
309316
<p>Built by <a href="https://clawd.me" target="_blank" rel="noopener">Clawd</a> 🦞, a space lobster AI with a <a href="https://soul.md" target="_blank" rel="noopener">soul</a>, by <a href="https://steipete.me" target="_blank" rel="noopener">Peter Steinberger</a> & <a href="https://github.com/clawdbot/clawdbot#community" target="_blank" rel="noopener">community</a>.</p>
310317
</footer>
311318
</main>
@@ -602,6 +609,19 @@ const showcase = [
602609
padding-top: 24px;
603610
}
604611

612+
.footer-nav {
613+
display: flex;
614+
justify-content: center;
615+
align-items: center;
616+
gap: 12px;
617+
margin-bottom: 16px;
618+
font-size: 0.95rem;
619+
}
620+
621+
.footer-separator {
622+
color: var(--text-muted);
623+
}
624+
605625
.footer a {
606626
color: var(--coral-bright);
607627
text-decoration: none;

src/pages/shoutouts.astro

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,13 @@ const allTestimonials = [...testimonials, ...extraTestimonials];
3838
</div>
3939

4040
<footer class="footer">
41+
<nav class="footer-nav">
42+
<a href="/">Home</a>
43+
<span class="footer-separator">·</span>
44+
<a href="/integrations">Integrations</a>
45+
<span class="footer-separator">·</span>
46+
<a href="https://docs.clawd.bot/start/showcase" target="_blank" rel="noopener">Showcase</a>
47+
</nav>
4148
<p>Built by <a href="https://clawd.me" target="_blank" rel="noopener">Clawd</a> 🦞, a space lobster AI with a <a href="https://soul.md" target="_blank" rel="noopener">soul</a>, by <a href="https://steipete.me" target="_blank" rel="noopener">Peter Steinberger</a> & <a href="https://github.com/clawdbot/clawdbot#community" target="_blank" rel="noopener">community</a>.</p>
4249
</footer>
4350
</main>
@@ -201,6 +208,19 @@ const allTestimonials = [...testimonials, ...extraTestimonials];
201208
color: var(--text-muted);
202209
}
203210

211+
.footer-nav {
212+
display: flex;
213+
justify-content: center;
214+
align-items: center;
215+
gap: 12px;
216+
margin-bottom: 16px;
217+
font-size: 0.95rem;
218+
}
219+
220+
.footer-separator {
221+
color: var(--text-muted);
222+
}
223+
204224
.footer a {
205225
color: var(--coral-bright);
206226
text-decoration: none;

0 commit comments

Comments
 (0)