Skip to content

Commit 202c07e

Browse files
committed
Remove principle card numbers
1 parent 3b4add9 commit 202c07e

1 file changed

Lines changed: 1 addition & 7 deletions

File tree

src/routes/index.tsx

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -568,7 +568,7 @@ function WhyTanStackSection() {
568568
</div>
569569

570570
<ol className="grid gap-3 sm:grid-cols-2">
571-
{whyTanStackPrinciples.map((principle, index) => (
571+
{whyTanStackPrinciples.map((principle) => (
572572
<li
573573
key={principle.title}
574574
className="group relative flex min-h-[19rem] flex-col overflow-hidden border border-gray-200 bg-white/70 p-5 shadow-sm transition-colors hover:bg-white dark:border-gray-800 dark:bg-gray-950/50 dark:hover:bg-gray-950 sm:p-6"
@@ -605,12 +605,6 @@ function WhyTanStackSection() {
605605
proof={principle.proof}
606606
accentClassName={principle.accentClassName}
607607
/>
608-
<span
609-
aria-hidden="true"
610-
className="absolute bottom-3 right-5 font-mono text-5xl font-black leading-none text-gray-100 transition-colors group-hover:text-gray-200 dark:text-white/[0.04] dark:group-hover:text-white/[0.07]"
611-
>
612-
{String(index + 1).padStart(2, '0')}
613-
</span>
614608
</li>
615609
))}
616610
</ol>

0 commit comments

Comments
 (0)