import { UserButton } from '@/components/auth/user-button'; import { Icons } from '@/components/icons/icons'; import type { LinkItemType } from 'fumadocs-ui/layouts/links'; import type { BaseLayoutProps } from 'fumadocs-ui/layouts/shared'; export const title = 'Blog'; export const description = 'A blog about web development, software engineering, and the latest technologies.'; export const owner = 'Anirudh Sriram'; export const baseOptions: BaseLayoutProps = { nav: { title, }, githubUrl: 'https://github.com/bertyuan', }; export const linkItems: LinkItemType[] = [ { icon: , text: 'About', url: '/about', active: 'url', }, { icon: , text: 'Posts', url: '/posts', active: 'url', }, { icon: , text: 'Tags', url: '/tags', active: 'url', }, { type: 'custom', children: , secondary: true, }, ]; export const postsPerPage = 5;