File tree Expand file tree Collapse file tree 2 files changed +26
-4
lines changed
Expand file tree Collapse file tree 2 files changed +26
-4
lines changed Original file line number Diff line number Diff line change 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 */
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 ) {
Original file line number Diff line number Diff 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 >
You can’t perform that action at this time.
0 commit comments