feat: redesign documentation landing page with custom theme and updated site navigation

This commit is contained in:
Firman Ramdhani
2026-06-24 14:18:43 +07:00
parent f05e1c6d05
commit 8e56e05d1b
4 changed files with 163 additions and 38 deletions
+23 -23
View File
@@ -3,7 +3,7 @@ import { withMermaid } from 'vitepress-plugin-mermaid'
const config = withMermaid(
defineConfig({
title: "Frontend Monorepo Docs",
title: "Frontend Monorepo",
description: "Centralized documentation for the Enterprise Frontend Monorepo",
themeConfig: {
@@ -13,39 +13,39 @@ const config = withMermaid(
sidebar: [
{
text: 'Introduction',
text: 'Getting Started',
items: [
{ text: 'Overview', link: '/overview' },
{ text: 'Local Setup', link: '/setup' },
{ text: 'Project Overview', link: '/overview' },
{ text: 'Development Setup', link: '/setup' },
],
},
{
text: 'Core Architecture & State',
text: 'Core Architecture',
collapsed: false,
items: [
{ text: 'Core API Engine', link: '/packages/core-api/' },
{ text: 'Core Events', link: '/packages/core-events/' },
{ text: 'Core Storage', link: '/packages/core-storage/' },
{ text: 'Core Internationalization', link: '/packages/core-i18n/' },
{ text: 'IPC Architecture', link: '/apps/desktop/IPC_ARCHITECTURE' },
{ text: 'API & Domain Logic', link: '/packages/core-api/' },
{ text: 'Event Bus System', link: '/packages/core-events/' },
{ text: 'Storage & Persistence', link: '/packages/core-storage/' },
{ text: 'I18n & Localization', link: '/packages/core-i18n/' },
],
},
{
text: 'UI System',
collapsed: false,
items: [
{ text: 'Overview', link: '/packages/ui/' },
{ text: 'App Layout', link: '/packages/ui/CORE-APP-SHELL' },
{ text: 'Form Primitives', link: '/packages/ui/FORM-COMPONENTS' },
],
},
{
text: 'UI System & Layouts',
text: 'Desktop Ecosystem',
collapsed: false,
items: [
{ text: 'UI Components Overview', link: '/packages/ui/' },
{ text: 'Core App Shell', link: '/packages/ui/CORE-APP-SHELL' },
{ text: 'Form Components', link: '/packages/ui/FORM-COMPONENTS' },
],
},
{
text: 'Applications & Configuration',
collapsed: false,
items: [
{ text: 'Desktop Application', link: '/apps/desktop/' },
{ text: 'Desktop Configuration', link: '/apps/desktop/CONFIGURATION' },
{ text: 'Desktop Auto Updater', link: '/apps/desktop/AUTO_UPDATER' },
{ text: 'Overview', link: '/apps/desktop/' },
{ text: 'Lifecycle & Configuration', link: '/apps/desktop/CONFIGURATION' },
{ text: 'IPC & Bridge Architecture', link: '/apps/desktop/IPC_ARCHITECTURE' },
{ text: 'Distribution & Auto-Update', link: '/apps/desktop/AUTO_UPDATER' },
],
},
],