1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-06-05 19:15:30 -04:00

fix: view transitions

This commit is contained in:
2026-01-28 11:18:56 -05:00
parent b80768cab6
commit 928ec66cf6
5 changed files with 40 additions and 32 deletions
+2 -5
View File
@@ -10,13 +10,10 @@ const PageTitle = ({
canonical: string;
}) => {
return (
<h1
className={cn("mt-0 mb-6 text-left text-4xl font-semibold tracking-tight lowercase sm:text-3xl", className)}
{...rest}
>
<h1 className={cn("mt-0 mb-6 text-left text-3xl font-semibold tracking-tight lowercase", className)} {...rest}>
<Link
href={canonical}
className="before:text-muted-foreground no-underline before:-mr-1 before:tracking-wider before:content-['\002E\002F']"
className="before:text-muted-foreground no-underline before:mr-[-3px] before:tracking-wider before:content-['\002E\002F']"
>
{children}
</Link>