mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-22 02:56:52 +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>
24 lines
502 B
Vue
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>
|