From a151c1e1ade905739efdd127ccf729c28f64559f Mon Sep 17 00:00:00 2001 From: Max Date: Mon, 5 Aug 2024 18:23:34 +0200 Subject: [PATCH] feat: cleanup things from personal page --- docusaurus.config.ts | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/docusaurus.config.ts b/docusaurus.config.ts index f3d812e..701d24b 100644 --- a/docusaurus.config.ts +++ b/docusaurus.config.ts @@ -3,8 +3,8 @@ import type {Config} from '@docusaurus/types'; import type * as Preset from '@docusaurus/preset-classic'; const config: Config = { - title: 'Max397574', - tagline: 'Homepage for personal projects', + title: 'Care.nvim', + tagline: 'Completion And Recommendation Engine', favicon: 'img/favicon.ico', // Set the production url of your site here @@ -37,7 +37,7 @@ const config: Config = { routeBasePath: '/', sidebarPath: './sidebars.ts', editUrl: - 'https://github.com/max397574/max397574.github.io', + 'https://github.com/max397574/care.nvim/tree/main/docs', }, blog: false, theme: { @@ -64,7 +64,7 @@ const config: Config = { label: 'Docs', }, { - href: 'https://github.com/max397574/max397574.github.io', + href: 'https://github.com/max397574/care.nvim', label: 'GitHub', position: 'right', }, @@ -77,29 +77,33 @@ const config: Config = { title: 'Navigation', items: [ { - label: 'Documentations', + label: 'Start Page', to: '/', }, + { + label: 'Getting Started', + to: '/getting_starated', + }, + { + label: 'For Developers', + to: '/dev', + }, ], }, { - title: 'Projects', + title: 'Development', items: [ { - label: 'Care', + label: 'GitHub', href: 'https://github.com/max397574/care.nvim', }, - { - label: 'Omega-nvim', - href: 'https://github.com/omega-nvim/omega-nvim', - }, ], }, { title: 'More', items: [ { - label: 'GitHub', + label: 'Author\'s github', href: 'https://github.com/max397574', }, ],