Files
pbakaus_impeccable/tests/fixtures/antipatterns/vue-should-pass.vue
T
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

24 lines
502 B
Vue

<template>
<div class="card rounded-xl p-6 ring-1 ring-gray-200">
<h2 class="text-lg font-semibold text-gray-900">{{ title }}</h2>
<p class="text-gray-600 mt-2">{{ description }}</p>
<button class="mt-4 px-4 py-2 bg-teal-600 text-white rounded-md">
Get Started
</button>
</div>
</template>
<script setup>
defineProps({
title: String,
description: String,
});
</script>
<style scoped>
.card {
font-family: 'Karla', system-ui, sans-serif;
background: #fff;
}
</style>