<article class="max-w-4xl mx-auto px-6 py-12">
<header class="mb-12">
<h1 class="text-4xl font-bold mb-4">Pagination & Sorting</h1>
<p class="text-xl text-muted">
Paginate results and order them efficiently.
</p>
</header>
<div class="space-y-12">
<section>
<h2 class="text-2xl font-semibold mb-4">Offset Pagination</h2>
<app-code-block [code]="offsetPagination" language="rust" />
</section>
<section>
<h2 class="text-2xl font-semibold mb-4">Cursor Pagination</h2>
<app-code-block [code]="cursorPagination" language="rust" />
</section>
<section>
<h2 class="text-2xl font-semibold mb-4">Sorting</h2>
<app-code-block [code]="sorting" language="rust" />
</section>
<section>
<h2 class="text-2xl font-semibold mb-4">Distinct</h2>
<app-code-block [code]="distinct" language="rust" />
</section>
</div>
</article>