Skip to content

Commit af1eb41

Browse files
committed
chore: add Trigger.dev branding to nav and footer
Add "by Trigger.dev" attribution with logo mark in the nav next to the agentcrumbs wordmark, and "Built by Trigger.dev" with logo in the footer alongside MIT License, Docs, and GitHub links.
1 parent 5879df8 commit af1eb41

File tree

2 files changed

+26
-4
lines changed

2 files changed

+26
-4
lines changed

docs/src/app/home.css

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,12 @@
2626

2727
/* NAV */
2828
.hp-nav { display: flex; align-items: center; justify-content: space-between; max-width: 1080px; margin: 0 auto; padding: 20px 24px; border-bottom: 1px solid var(--hp-border); }
29+
.hp-nav-left { display: flex; align-items: center; gap: 12px; }
2930
.hp-wordmark { font-family: var(--hp-mono); font-size: 16px; font-weight: 600; color: var(--hp-text); letter-spacing: -0.02em; }
3031
.hp-wordmark span { color: var(--hp-accent); }
32+
.hp-by-trigger { display: flex; align-items: center; gap: 5px; font-family: var(--hp-mono); font-size: 12px; color: var(--hp-text-muted) !important; transition: color 0.15s; }
33+
.hp-by-trigger:hover { color: var(--hp-text-dim) !important; }
34+
.hp-by-trigger svg { flex-shrink: 0; }
3135
.hp-nav-links { display: flex; gap: 24px; font-family: var(--hp-mono); font-size: 14px; }
3236

3337
/* CONTAINER */
@@ -130,7 +134,11 @@
130134
/* FOOTER */
131135
.hp-footer { border-top: 1px solid var(--hp-border); padding: 32px 0; margin-top: 48px; }
132136
.hp-footer-inner { display: flex; align-items: center; justify-content: space-between; font-family: var(--hp-mono); font-size: 13px; color: var(--hp-text-muted); }
133-
.hp-footer-inner a { color: var(--hp-text-dim); }
137+
.hp-footer-brand { display: flex; align-items: center; gap: 8px; color: var(--hp-text-dim) !important; transition: color 0.15s; }
138+
.hp-footer-brand:hover { color: var(--hp-text) !important; }
139+
.hp-footer-brand svg { flex-shrink: 0; }
140+
.hp-footer-links { display: flex; align-items: center; gap: 20px; }
141+
.hp-footer-links a { color: var(--hp-text-dim); }
134142

135143
/* RESPONSIVE */
136144
@media (max-width: 768px) {

docs/src/app/page.tsx

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,14 @@ export default function HomePage() {
8585
<div className="hp">
8686
{/* NAV */}
8787
<nav className="hp-nav">
88-
<div className="hp-wordmark">agent<span>crumbs</span></div>
88+
<div className="hp-nav-left">
89+
<div className="hp-wordmark">agent<span>crumbs</span></div>
90+
<a href="https://trigger.dev" target="_blank" className="hp-by-trigger">
91+
by
92+
<svg width="14" height="14" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg"><path fillRule="evenodd" clipRule="evenodd" d="M41.6889 52.2795L60.4195 20L106.839 100H14L32.7305 67.7195L45.9801 75.3312L40.5003 84.7756H80.3387L60.4195 50.4478L54.9396 59.8922L41.6889 52.2795Z" fill="#A8FF53"/></svg>
93+
Trigger.dev
94+
</a>
95+
</div>
8996
<div className="hp-nav-links">
9097
<a href="/docs">Docs</a>
9198
<a href="https://github.com/triggerdotdev/agentcrumbs" target="_blank">GitHub</a>
@@ -272,8 +279,15 @@ export default function HomePage() {
272279
<footer className="hp-footer">
273280
<div className="hp-container">
274281
<div className="hp-footer-inner">
275-
<span>MIT License</span>
276-
<a href="https://github.com/triggerdotdev/agentcrumbs" target="_blank">GitHub</a>
282+
<a href="https://trigger.dev" target="_blank" className="hp-footer-brand">
283+
<svg width="18" height="18" viewBox="0 0 120 120" fill="none" xmlns="http://www.w3.org/2000/svg"><path fillRule="evenodd" clipRule="evenodd" d="M41.6889 52.2795L60.4195 20L106.839 100H14L32.7305 67.7195L45.9801 75.3312L40.5003 84.7756H80.3387L60.4195 50.4478L54.9396 59.8922L41.6889 52.2795Z" fill="#A8FF53"/></svg>
284+
Built by Trigger.dev
285+
</a>
286+
<div className="hp-footer-links">
287+
<span>MIT License</span>
288+
<a href="/docs">Docs</a>
289+
<a href="https://github.com/triggerdotdev/agentcrumbs" target="_blank">GitHub</a>
290+
</div>
277291
</div>
278292
</div>
279293
</footer>

0 commit comments

Comments
 (0)