Skip to content

Commit 86c1f44

Browse files
committed
fix: build
1 parent affbab7 commit 86c1f44

File tree

16 files changed

+108
-675
lines changed

16 files changed

+108
-675
lines changed

app/(enter)/page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default function Page() {
1313
<h1 className="max-w-5xl text-5xl md:text-8xl">
1414
<WavingHand />
1515
<br />
16-
Hi, I'm nnecec.
16+
Hi, I&apos;m nnecec.
1717
<span className="text-4xl opacity-90 md:text-6xl">
1818
This is my blog about the understanding of{' '}
1919
<HoverText color="#FFE70B">JavaScript</HoverText>,{' '}

app/(enter)/posts/[...slug]/page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { SITE_CONFIG } from '~/libs/utils/constants'
1111

1212
type Props = {
1313
params: Promise<{ slug: string[] }>
14-
searchParams: { [key: string]: string | string[] | undefined }
14+
searchParams: Promise<{ [key: string]: string | string[] | undefined }>
1515
}
1616

1717
export async function generateMetadata(props: Props): Promise<Metadata> {

app/layout.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ export const metadata: Metadata = {
2323
other: {
2424
'msapplication-TileColor': '#000',
2525
},
26-
themeColor: '#000',
2726
title: {
2827
default: SITE_CONFIG.title,
2928
template: '%s - nnecec.studio',
@@ -34,6 +33,7 @@ export const viewport: Viewport = {
3433
initialScale: 1,
3534
maximumScale: 1,
3635
minimumScale: 1,
36+
themeColor: '#000',
3737
userScalable: false,
3838
width: 'device-width',
3939
}

core/components/posts/tag-picker.tsx

-27
This file was deleted.

0 commit comments

Comments
 (0)