Skip to content

Commit 191f78a

Browse files
committed
fix: content
1 parent 3b03223 commit 191f78a

2 files changed

Lines changed: 17 additions & 7 deletions

File tree

src/app/(home)/page.tsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -354,9 +354,11 @@ function Hero() {
354354
</Link>
355355
.
356356
</h2>
357-
<p className="text-foreground italic sm:text-lg">
357+
<p className="text-foreground max-w-[900px] text-balance italic sm:text-lg">
358358
<span className="mr-2">
359-
It&apos;s not a library. It&apos;s a playbook.{" "}
359+
It&apos;s not a library. It&apos;s a playbook. Stop hand-rolling
360+
data tables. Copy proven patterns, install the agent skill,
361+
ship.{" "}
360362
</span>
361363
<NextLink
362364
href="/docs/introduction"

src/content/docs/00-introduction.mdx

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,21 @@ faq:
1414

1515
_**It’s not a library. It’s a playbook.**_
1616

17-
Build production-grade data tables for large datasets — with proven patterns you can copy into your codebase.
17+
Stop hand-rolling data tables. Copy proven patterns, install the [agent skill](/docs/quick-start#agent-skill) and start shipping.
1818

19-
Install the [agent skill](/docs/quick-start#agent-skill) and let it handle the rest.
19+
Built on the stack that actually scales:
2020

21-
> This is a **work in progress** — our goal is to make it the fastest way to spin up a data-table view for logs and beyond. Questions, ideas, or feedback? [Open an issue on GitHub](https://github.com/openstatusHQ/data-table-filters/issues).
21+
- **[shadcn registry](https://ui.shadcn.com)** — drop components directly into your codebase
22+
- **[TanStack Table](https://tanstack.com/table) + [Query](https://tanstack.com/query)** — sorting, filtering, infinite scroll, done
23+
- **[Drizzle ORM](/docs/drizzle-orm)** — server-side `WHERE`, cursors, and faceted counts out of the box
24+
- **[nuqs](https://nuqs.47ng.com) / [Zustand](https://zustand.docs.pmnd.rs/getting-started/introduction)** — URL or memory state, your call
25+
- **[Agent SKILL.md](/docs/quick-start#agent-skill)** — describe your schema, let the agent wire it up
26+
27+
Define a schema. Generate columns, filters, and sheet details. Done.
2228

2329
![data-table with some filters and activated live mode](/assets/docs/data-table.png)
2430

25-
This guide covers the system end to end — from defining a table schema to rendering filters, columns, and row details. Get started with the [Quick Start](/docs/quick-start) or jump to a [Full Example](/docs/full-example).
31+
This guide covers the system end to end — from defining a table schema to rendering filters, columns, and row details. Get started with the [Quick Start](/docs/quick-start) and jump to a [Full Example](/docs/full-example).
2632

2733
## Examples
2834

@@ -32,6 +38,8 @@ This guide covers the system end to end — from defining a table schema to rend
3238
- [Light](/light) — lightweight frontend for [light.openstatus.dev](https://light.openstatus.dev)
3339
- [Builder](/builder) — interactive schema builder
3440

41+
> Questions, ideas, or feedback? [Open an issue on GitHub](https://github.com/openstatusHQ/data-table-filters/issues).
42+
3543
---
3644

3745
## Quick Overview
@@ -66,7 +74,7 @@ The data-table is built on three layers:
6674

6775
1. **Table Schema** — a declarative builder that defines columns, filters, display, sorting, and row details in one place
6876
2. **State Management** — a pluggable adapter system for filter state (URL, Zustand, or custom)
69-
3. **Components** — pre-built filter controls, command palette, infinite scroll table, and row detail drawer
77+
3. **UI Components** — pre-built filter controls, command palette, infinite scroll table, and row detail drawer
7078

7179
For server-side data, the [Drizzle ORM](/docs/drizzle-orm) helpers handle `WHERE` conditions, sorting, cursor pagination, and faceted counts. The [Data Fetching](/docs/data-fetching) layer covers the API response shape and React Query integration.
7280

0 commit comments

Comments
 (0)