Skip to content

Commit a29ef2b

Browse files
committed
fix: address top open issues (links, z-index, x.com URL)
- #822: relative links inside .agents/index.md now use ./ since the file is loaded directly via .agents/index.md (CLAUDE.md is a symlink to it), so .agents/typescript.md resolved to .agents/.agents/... Matches the fix in PR #820. - #730: docs DocFeedbackFloatingButton dropped from z-[100] to z-30 so the floating "+" no longer overlaps the navbar (also at z-[100]). - #281 follow-up: Footer link labelled "@tannerlinsley on X.com" now points to x.com instead of twitter.com to match its label and the rest of the site's X.com migration. https://claude.ai/code/session_01TYh6hJQmzvmWMpBfg8uhdt
1 parent c937585 commit a29ef2b

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.agents/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ TanStack.com marketing site built with TanStack Start.
88
- Run `pnpm test` before commits or after significant code changes, not after every tiny edit
99
- Smoke tests live outside the default `pnpm test` path and are reserved for commit-hook validation
1010
- Don't run builds after every change. This is a visual site; assume changes work unless reported otherwise.
11-
- **Typesafety is paramount.** Never cast types; fix at source instead. See [typescript.md](.agents/typescript.md).
11+
- **Typesafety is paramount.** Never cast types; fix at source instead. See [typescript.md](./typescript.md).
1212

1313
## Topic Guides
1414

15-
- [TypeScript Conventions](.agents/typescript.md): Type inference, casting rules, generic naming
16-
- [TanStack Patterns](.agents/tanstack-patterns.md): Loaders, server functions, environment shaking
17-
- [UI Style Guide](.agents/ui-style.md): Visual design principles for 2026
18-
- [Workflow](.agents/workflow.md): Build commands, debugging, Playwright
15+
- [TypeScript Conventions](./typescript.md): Type inference, casting rules, generic naming
16+
- [TanStack Patterns](./tanstack-patterns.md): Loaders, server functions, environment shaking
17+
- [UI Style Guide](./ui-style.md): Visual design principles for 2026
18+
- [Workflow](./workflow.md): Build commands, debugging, Playwright

src/components/DocFeedbackFloatingButton.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export function DocFeedbackFloatingButton({
9090
// eslint-disable-next-line jsx-a11y/click-events-have-key-events,jsx-a11y/no-static-element-interactions
9191
<div
9292
ref={buttonRef}
93-
className="doc-feedback-floating-btn absolute top-0 right-0 -translate-y-full z-[100]"
93+
className="doc-feedback-floating-btn absolute top-0 right-0 -translate-y-full z-30"
9494
onMouseEnter={onMouseEnter}
9595
onMouseLeave={onMouseLeave}
9696
onClick={(e) => e.stopPropagation()}

src/components/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const footerLinks = [
66
{ label: '@Tan_Stack on X.com', to: 'https://x.com/tan_stack' },
77
{
88
label: '@TannerLinsley on X.com',
9-
to: 'https://twitter.com/tannerlinsley',
9+
to: 'https://x.com/tannerlinsley',
1010
},
1111
{ label: 'GitHub', to: 'https://github.com/tanstack' },
1212
{

0 commit comments

Comments
 (0)