mirror of
https://github.com/smyalygames/anthonyberg-website.git
synced 2025-05-18 06:04:12 +02:00
24 lines
402 B
TypeScript
24 lines
402 B
TypeScript
import type { MetaRecord } from 'nextra';
|
|
|
|
const meta: MetaRecord = {
|
|
index: {
|
|
title: 'Home',
|
|
type: 'page',
|
|
},
|
|
projects: {
|
|
title: 'Projects',
|
|
type: 'page',
|
|
},
|
|
posts: {
|
|
title: 'Blog',
|
|
type: 'page'
|
|
},
|
|
veganenumbers: {
|
|
display: 'hidden',
|
|
theme: {
|
|
sidebar: false
|
|
}
|
|
}
|
|
}
|
|
|
|
export default meta; |