jonbio/app/about/page.tsx

8 lines
213 B
TypeScript
Raw Normal View History

2023-07-07 11:17:22 +08:00
import { allAuthors } from 'contentlayer/generated'
import About from './About'
export default function Page() {
const author = allAuthors.find((p) => p.slug === 'default')
return <About author={author} />
}