8 lines
213 B
TypeScript
8 lines
213 B
TypeScript
|
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} />
|
||
|
}
|