astro/docs/src/config.ts

115 lines
4 KiB
TypeScript
Raw Normal View History

2021-08-02 06:38:50 +00:00
export const SIDEBAR = {
2021-08-02 06:40:02 +00:00
en: [
2021-08-02 06:38:50 +00:00
{ text: 'Setup', header: true },
{ text: 'Getting Started', link: 'getting-started' },
{ text: 'Quickstart', link: 'quick-start' },
{ text: 'Installation', link: 'installation' },
{ text: 'Examples', link: 'examples' },
{ text: 'Astro vs. X', link: 'comparing-astro-vs-other-tools' },
2021-08-02 06:40:02 +00:00
2021-08-02 06:38:50 +00:00
{ text: 'Basics', header: true },
{ text: 'Project Structure', link: 'core-concepts/project-structure' },
{ text: 'Component Syntax', link: 'core-concepts/astro-components' },
2021-08-02 06:38:50 +00:00
{ text: 'Pages', link: 'core-concepts/astro-pages' },
{ text: 'Layouts', link: 'core-concepts/layouts' },
{ text: 'Routing', link: 'core-concepts/routing' },
2021-08-02 06:38:50 +00:00
{ text: 'Partial Hydration', link: 'core-concepts/component-hydration' },
2021-08-02 06:40:02 +00:00
2021-08-02 06:38:50 +00:00
{ text: 'Guides', header: true },
{ text: 'Styling & CSS', link: 'guides/styling' },
{ text: 'Markdown', link: 'guides/markdown-content' },
{ text: 'Debugging', link: 'guides/debugging' },
{ text: 'Data Fetching', link: 'guides/data-fetching' },
{ text: 'Pagination', link: 'guides/pagination' },
{ text: 'RSS', link: 'guides/rss' },
2021-08-02 06:38:50 +00:00
{ text: 'Supported Imports', link: 'guides/imports' },
{ text: 'Aliases', link: 'guides/aliases' },
2021-08-02 06:38:50 +00:00
{ text: 'Deploy a Website', link: 'guides/deploy' },
{ text: 'Publish a Component', link: 'guides/publish-to-npm' },
2021-08-02 06:40:02 +00:00
2021-08-02 06:38:50 +00:00
{ text: 'Reference', header: true },
{ text: 'Built-In Components', link: 'reference/builtin-components' },
{ text: 'API Reference', link: 'reference/api-reference' },
{ text: 'CLI Reference', link: 'reference/cli-reference' },
{
text: 'Configuration Reference',
link: 'reference/configuration-reference',
},
{ text: 'Renderer Reference', link: 'reference/renderer-reference' },
],
de: [
{ text: 'Willkommen', header: true },
{ text: 'Einführung', link: 'de/getting-started' },
],
2021-08-02 06:40:02 +00:00
nl: [
2021-08-02 06:38:50 +00:00
{ text: 'Welkom', header: true },
{ text: 'Beginnen', link: 'nl/getting-started' },
],
2021-08-02 06:40:02 +00:00
fi: [
2021-08-02 06:38:50 +00:00
{ text: 'Tervetuloa', header: true },
{ text: 'Aloittaminen', link: 'fi/getting-started' },
{ text: 'Pika-aloitus', link: 'fi/quick-start' },
{ text: 'Asennus', link: 'fi/installation' },
],
es: [
{ text: 'Configuración', header: true },
{ text: 'Empezando', link: 'es/getting-started' },
],
'zh-CN': [
{ text: '起步', header: true },
{ text: '入门指南', link: 'zh-CN/getting-started' },
{ text: '快速入门', link: 'zh-CN/quick-start' },
{ text: '安装指南', link: 'zh-CN/installation' },
{ text: '模板样例', link: 'zh-CN/examples' },
],
'zh-TW': [
{ text: '設定', header: true },
{ text: '新手上路', link: 'zh-TW/getting-started' },
{ text: '快速開始', link: 'zh-TW/quick-start' },
{ text: '安裝', link: 'zh-TW/installation' },
{ text: '範例', link: 'zh-TW/examples' },
],
bg: [
{ text: 'Главни', header: true },
2021-08-06 05:52:13 +00:00
{ text: 'Започваме!', link: 'bg/getting-started' },
],
fr: [
{ text: 'Bienvenue', header: true },
2021-08-17 05:01:02 +00:00
{ text: 'Bien démarrer', link: 'fr/getting-started' },
{ text: 'Démarrage rapide', link: 'fr/quick-start' },
{ text: 'Installation', link: 'fr/installation' },
],
bn: [
{ text: 'সেটআপ', header: true },
{ text: 'শুরু করুন', link: 'bn/getting-started' },
],
kr: [
{ text: '환영합니다', header: true },
2021-08-24 05:32:44 +00:00
{ text: '시작하기', link: 'kr/getting-started' },
],
ar: [
{ text: 'التهيئة', header: true },
{ text: 'باشر البدأ', link: 'ar/getting-started' },
2021-08-25 16:12:44 +00:00
],
da: [
{ text: 'Velkommen', header: true },
{ text: 'Introduktion', link: 'da/getting-started' },
],
2021-08-02 06:40:02 +00:00
};
export const SITE = {
title: 'Astro Documentation',
2021-07-21 14:44:15 +00:00
description: 'Build faster websites with less client-side Javascript.',
2021-07-31 05:41:22 +00:00
};
export const OPEN_GRAPH = {
locale: 'en_US',
image: {
src: '/default-og-image.png?v=1',
alt:
'astro logo on a starry expanse of space,' +
' with a purple saturn-like planet floating in the right foreground',
},
twitter: 'astrodotbuild',
};