diff --git a/apps/web/src/app/play/page.tsx b/apps/web/src/app/play/page.tsx index ee77ce1bda..2fa8c39384 100644 --- a/apps/web/src/app/play/page.tsx +++ b/apps/web/src/app/play/page.tsx @@ -5,10 +5,10 @@ import { Gauge, Palette, PanelTop, + Table, } from "lucide-react"; import type { Metadata } from "next"; -import { BackButton } from "@/components/layout/back-button"; import type { CardProps } from "@/components/play/card"; import { Card } from "@/components/play/card"; import { @@ -92,4 +92,11 @@ const playgrounds: CardProps[] = [ "Use the endpoint to return the desired error code for testing purposes.", icon: FileCode, }, + { + href: "https://logs.run", + title: "Data Table Demo", + description: + "Tanstack table with sorting, filtering, and infinite scroll. Combined with cmdk.", + icon: Table, + }, ];