Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions apps/web/src/components/demo/DemoFlow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,16 @@ export function DemoFlow() {
borderBottom: '1px solid var(--rule)',
}}
>
<div style={{ display: 'flex', alignItems: 'center', gap: 16 }}>
<a
href="/"
style={{
display: 'flex',
alignItems: 'center',
gap: 16,
textDecoration: 'none',
color: 'inherit',
}}
>
<Wordmark size={20} />
<span style={{ width: 1, height: 18, background: 'var(--rule-strong)' }} />
<span
Expand All @@ -145,7 +154,7 @@ export function DemoFlow() {
>
build your path
</span>
</div>
</a>
<div style={{ display: 'flex', alignItems: 'center', gap: 14 }}>
<span className="lk-demo-steps" style={{ display: 'inline-flex', alignItems: 'center', gap: 14 }}>
{[0, 1, 2, 3, 4].map((i) => (
Expand Down
4 changes: 3 additions & 1 deletion apps/web/src/components/layout/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ export function Footer() {
}}
>
<div className="lk-footer-brand">
<Wordmark size={20} />
<a href="/" style={{ textDecoration: 'none', color: 'inherit', display: 'inline-flex' }}>
<Wordmark size={20} />
</a>
<p
style={{
fontSize: 13,
Expand Down
4 changes: 3 additions & 1 deletion apps/web/src/components/layout/Nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,9 @@ export function Nav() {
gap: open ? 0 : undefined,
}}
>
<Wordmark size={22} />
<a href="/" style={{ textDecoration: 'none', color: 'inherit', display: 'inline-flex' }}>
<Wordmark size={22} />
</a>

{/* Desktop links */}
<div className="lk-nav-links" style={{ display: 'flex', alignItems: 'center', gap: 28, fontSize: 13.5, color: 'var(--ink-soft)' }}>
Expand Down
Loading