@@ -2,14 +2,24 @@ import { defineConfig } from 'vitepress'
22
33export default defineConfig ( {
44 title : 'Zero Ichi' ,
5- description : 'Documentation for the Zero Ichi WhatsApp Bot ' ,
5+ description : 'A powerful WhatsApp bot built with Python + Neonize — packed with AI, media downloader, group management, and a web dashboard. ' ,
66 base : '/' ,
7+ appearance : 'dark' ,
8+ lastUpdated : true ,
79
810 head : [
911 [ 'link' , { rel : 'icon' , href : '/logo.png' } ] ,
1012 [ 'link' , { rel : 'preconnect' , href : 'https://fonts.googleapis.com' } ] ,
1113 [ 'link' , { rel : 'preconnect' , href : 'https://fonts.gstatic.com' , crossorigin : '' } ] ,
12- [ 'link' , { href : 'https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&family=IBM+Plex+Mono:wght@400;500;600&display=swap' , rel : 'stylesheet' } ] ,
14+ [ 'link' , { href : 'https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,400;0,500;0,700;1,400&display=swap' , rel : 'stylesheet' } ] ,
15+ [ 'meta' , { name : 'theme-color' , content : '#201d1d' } ] ,
16+ [ 'meta' , { property : 'og:type' , content : 'website' } ] ,
17+ [ 'meta' , { property : 'og:title' , content : 'Zero Ichi — WhatsApp Bot' } ] ,
18+ [ 'meta' , { property : 'og:description' , content : 'A powerful WhatsApp bot built with Python + Neonize — packed with AI, media downloader, group management, and a web dashboard.' } ] ,
19+ [ 'meta' , { property : 'og:image' , content : '/logo.png' } ] ,
20+ [ 'meta' , { name : 'twitter:card' , content : 'summary' } ] ,
21+ [ 'meta' , { name : 'twitter:title' , content : 'Zero Ichi — WhatsApp Bot' } ] ,
22+ [ 'meta' , { name : 'twitter:description' , content : 'A powerful WhatsApp bot built with Python + Neonize — packed with AI, media downloader, group management, and a web dashboard.' } ] ,
1323 ] ,
1424
1525 markdown : {
@@ -21,6 +31,12 @@ export default defineConfig({
2131
2232 themeConfig : {
2333 logo : '/logo.png' ,
34+ siteTitle : 'Zero Ichi' ,
35+
36+ outline : {
37+ level : [ 2 , 3 ] ,
38+ label : 'On this page' ,
39+ } ,
2440
2541 nav : [
2642 { text : 'Guide' , link : '/getting-started/installation' } ,
@@ -100,13 +116,17 @@ export default defineConfig({
100116 } ,
101117
102118 footer : {
103- message : 'Built with 💖 ' ,
119+ message : 'Built with ❤️ ' ,
104120 copyright : '© 2026 MhankBarBar' ,
105121 } ,
106122
107123 editLink : {
108124 pattern : 'https://github.com/MhankBarBar/zero-ichi/edit/master/docs/:path' ,
109125 text : 'Edit this page on GitHub' ,
110126 } ,
127+
128+ lastUpdated : {
129+ text : 'Last updated' ,
130+ } ,
111131 } ,
112132} )
0 commit comments