Upgrade Next.js version in pnpm-lock.yaml

The Next.js version in pnpm-lock.yaml file has been updated from 14.2.1 to 14.3.0-canary.7. This upgrade affects various dependencies, potentially providing new features, security upgrades or performance improvements.
This commit is contained in:
giancarlo
2024-04-17 21:30:46 +08:00
parent f7ded6f789
commit 5a74f93d26
15 changed files with 168 additions and 144 deletions

View File

@@ -1,6 +1,5 @@
import Link from 'next/link';
import { Heading } from '@kit/ui/heading';
import { Trans } from '@kit/ui/trans';
import { AppLogo } from '~/components/app-logo';
@@ -116,7 +115,7 @@ export function SiteFooter() {
}
function FooterSectionHeading(props: React.PropsWithChildren) {
return <Heading level={6}>{props.children}</Heading>;
return <span className={'font-heading'}>{props.children}</span>;
}
function FooterSectionList(props: React.PropsWithChildren) {