314efe8b22
* fix(design): stop synthesizing bold on Hedvig display headings Hedvig Letters Serif ships weight 400 only, but the h1-h3 base rule forced font-weight 500 and DialogTitle/SheetTitle stacked font-semibold on top, so every display heading rendered browser-synthesized bold: the smudged heavy look on dialog titles and page headings. Drop the base rule to 400, remove the weight utilities from the title primitives, and sweep the 41 files that hand-set font-medium/semibold/bold on serif headings (a pattern design.md already forbids). Headings that opt into font-sans keep their weight. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(design): drop empty className left by the weight sweep Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> --------- Co-authored-by: Jakob Wennberg <311770904+jakobwennberg-oss@users.noreply.github.com> Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
25 lines
952 B
TypeScript
25 lines
952 B
TypeScript
'use client'
|
|
|
|
import type { WorkspaceComponentProps } from '@/lib/extensions/workspace-registry'
|
|
import { Button } from '@/components/ui/button'
|
|
import { Landmark, Settings } from 'lucide-react'
|
|
import Link from 'next/link'
|
|
|
|
export default function EnableBankingWorkspace({ userId }: WorkspaceComponentProps) {
|
|
return (
|
|
<div className="flex flex-col items-center justify-center py-16 text-center">
|
|
<Landmark className="h-12 w-12 text-muted-foreground/40 mb-4" />
|
|
<h3 className="text-lg text-foreground">Bankintegration (PSD2)</h3>
|
|
<p className="text-sm text-muted-foreground mt-1 max-w-md">
|
|
Koppla ditt bankkonto under Inställningar för att synka transaktioner automatiskt.
|
|
</p>
|
|
<Button asChild variant="outline" className="mt-4">
|
|
<Link href="/settings/banking">
|
|
<Settings className="mr-2 h-4 w-4" />
|
|
Gå till bankinställningar
|
|
</Link>
|
|
</Button>
|
|
</div>
|
|
)
|
|
}
|