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

## Topic Guides

- [TypeScript Conventions](.agents/typescript.md): Type inference, casting rules, generic naming
- [TanStack Patterns](.agents/tanstack-patterns.md): Loaders, server functions, environment shaking
- [UI Style Guide](.agents/ui-style.md): Visual design principles for 2026
- [Workflow](.agents/workflow.md): Build commands, debugging, Playwright
- [TypeScript Conventions](./typescript.md): Type inference, casting rules, generic naming
- [TanStack Patterns](./tanstack-patterns.md): Loaders, server functions, environment shaking
- [UI Style Guide](./ui-style.md): Visual design principles for 2026
- [Workflow](./workflow.md): Build commands, debugging, Playwright
2 changes: 1 addition & 1 deletion src/components/DocFeedbackFloatingButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export function DocFeedbackFloatingButton({
// eslint-disable-next-line jsx-a11y/click-events-have-key-events,jsx-a11y/no-static-element-interactions
<div
ref={buttonRef}
className="doc-feedback-floating-btn absolute top-0 right-0 -translate-y-full z-[100]"
className="doc-feedback-floating-btn absolute top-0 right-0 -translate-y-full z-30"
onMouseEnter={onMouseEnter}
onMouseLeave={onMouseLeave}
onClick={(e) => e.stopPropagation()}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const footerLinks = [
{ label: '@Tan_Stack on X.com', to: 'https://x.com/tan_stack' },
{
label: '@TannerLinsley on X.com',
to: 'https://twitter.com/tannerlinsley',
to: 'https://x.com/tannerlinsley',
},
{ label: 'GitHub', to: 'https://github.com/tanstack' },
{
Expand Down
Loading