all-signs-try/apps/client/src/pages/TRPCDemoPage.tsx

44 lines
1.3 KiB
TypeScript

import { Sparkles } from "lucide-react";
import {
HelloExample,
UsersExample,
PostsExample,
FileUploadExample,
} from "@/components/demo/examples";
export default function TRPCDemoPage() {
return (
<div className="min-h-screen gradient-bg">
<div className="container mx-auto p-8 max-w-4xl">
{/* Hero Header */}
<header className="mb-12 text-center">
<div className="inline-flex items-center gap-2 px-4 py-2 rounded-full bg-primary/10 text-primary text-sm font-medium mb-4">
<Sparkles className="h-4 w-4" />
Type-safe API Demo
</div>
<h1 className="text-5xl font-bold mb-4 gradient-text">
tRPC + TaylorDB
</h1>
<p className="text-lg text-muted-foreground max-w-md mx-auto">
Experience the power of end-to-end type safety with a beautiful,
modern interface
</p>
</header>
{/* Demo Examples */}
<main className="grid gap-8">
<HelloExample />
<UsersExample />
<PostsExample />
<FileUploadExample />
</main>
{/* Footer */}
<footer className="mt-12 text-center text-sm text-muted-foreground">
<p>Built with 💜 using tRPC, React Query &amp; TaylorDB</p>
</footer>
</div>
</div>
);
}