mirror of
https://github.com/altstackHQ/altstack-data.git
synced 2026-04-17 21:53:12 +02:00
37 lines
705 B
TypeScript
37 lines
705 B
TypeScript
import type { MetaRecord } from 'nextra'
|
|
|
|
const meta: MetaRecord = {
|
|
index: {
|
|
title: 'Home',
|
|
type: 'page',
|
|
display: 'hidden',
|
|
},
|
|
why: {
|
|
title: '📜 Why These Docs Exist',
|
|
},
|
|
'quick-start': {
|
|
title: '🚀 Quick Start',
|
|
},
|
|
deploy: {
|
|
title: '📦 Deploy Guides',
|
|
},
|
|
stacks: {
|
|
title: '🔥 Stacks',
|
|
},
|
|
concepts: {
|
|
title: '🧠 Concepts',
|
|
},
|
|
// -- External links --
|
|
directory: {
|
|
title: '← Back to Directory',
|
|
href: 'https://thealtstack.com',
|
|
type: 'page',
|
|
},
|
|
contact: {
|
|
title: 'Contact Us',
|
|
display: 'hidden'
|
|
},
|
|
}
|
|
|
|
export default meta
|