fix: page titles invisible on dark bg — text-slate-900 → text-foreground
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
f4dc3074c0
commit
3ec9aeaf42
3 changed files with 6 additions and 6 deletions
|
|
@ -1882,8 +1882,8 @@ const FocusGroupSession = () => {
|
|||
<ArrowLeft className="h-4 w-4" />
|
||||
</Button>
|
||||
<div>
|
||||
<h1 className="font-sf text-2xl font-bold text-slate-900">{focusGroup.name}</h1>
|
||||
<p className="text-slate-600">{new Date(focusGroup.date).toLocaleString()}</p>
|
||||
<h1 className="font-sf text-2xl font-bold text-foreground">{focusGroup.name}</h1>
|
||||
<p className="text-muted-foreground">{new Date(focusGroup.date).toLocaleString()}</p>
|
||||
<div className="flex items-center mt-1">
|
||||
<Bot className="h-3 w-3 text-slate-500 mr-1" />
|
||||
<Badge variant="secondary" className="text-xs">
|
||||
|
|
|
|||
|
|
@ -290,8 +290,8 @@ const FocusGroups = () => {
|
|||
<main className="pt-20 pb-16 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
|
||||
<div className="flex flex-col sm:flex-row justify-between items-start sm:items-center mb-8">
|
||||
<div>
|
||||
<h1 className="font-sf text-3xl font-bold text-slate-900">Focus Groups</h1>
|
||||
<p className="text-slate-600 mt-1">Set up and manage AI-moderated research sessions</p>
|
||||
<h1 className="font-sf text-3xl font-bold text-foreground">Focus Groups</h1>
|
||||
<p className="text-muted-foreground mt-1">Set up and manage AI-moderated research sessions</p>
|
||||
</div>
|
||||
|
||||
<div className="mt-4 sm:mt-0">
|
||||
|
|
|
|||
|
|
@ -1156,8 +1156,8 @@ const SyntheticUsers = () => {
|
|||
<main className="pt-20 pb-16 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
|
||||
<div className="flex flex-col sm:flex-row justify-between items-start sm:items-center mb-8">
|
||||
<div>
|
||||
<h1 className="font-sf text-3xl font-bold text-slate-900">Synthetic Personas</h1>
|
||||
<p className="text-slate-600 mt-1">Create and manage AI-generated research participants</p>
|
||||
<h1 className="font-sf text-3xl font-bold text-foreground">Synthetic Personas</h1>
|
||||
<p className="text-muted-foreground mt-1">Create and manage AI-generated research participants</p>
|
||||
</div>
|
||||
|
||||
<div className="mt-4 sm:mt-0 flex flex-col items-end gap-3">
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue