Files
pbakaus_impeccable/tests/fixtures/antipatterns/svelte-should-pass.svelte
Paul BakausandClaude Opus 4.7 b5c203f38a feat(detector): flag Fraunces, Geist, and the new monoculture fonts
Adds Fraunces, Geist (Sans/Mono), Mona Sans, Plus Jakarta Sans,
Space Grotesk, Recoleta, and Instrument Sans to OVERUSED_FONTS.
Brand-domain exceptions for Geist on vercel.com / nextjs.org /
v0.app and Mona Sans on github.com / githubnext.com.

Updates four should-pass fixtures that used the now-flagged faces
as "good examples"; switches to Newsreader + Karla. Adds positive
assertions for Fraunces and Geist.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-29 11:31:38 -07:00

21 lines
400 B
Svelte

<script>
export let title = '';
export let items = [];
</script>
<div class="sidebar rounded-lg ring-1 ring-gray-200 p-4">
<h3 class="text-lg font-semibold text-gray-900">{title}</h3>
<ul>
{#each items as item}
<li class="py-2">{item.name}</li>
{/each}
</ul>
</div>
<style>
.sidebar {
font-family: 'Karla', system-ui, sans-serif;
background: #fafafa;
}
</style>