mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-20 10:06:54 +03:00
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>
21 lines
400 B
Svelte
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>
|