@knowcode/doc-builder 1.5.1 → 1.5.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -23,7 +23,9 @@
23
23
  "Bash(npm:*)",
24
24
  "Bash(vercel project:*)",
25
25
  "Bash(vercel alias:*)",
26
- "Bash(find:*)"
26
+ "Bash(find:*)",
27
+ "Bash(diff:*)",
28
+ "Bash(git log:*)"
27
29
  ],
28
30
  "deny": []
29
31
  }
package/CHANGELOG.md CHANGED
@@ -5,6 +5,39 @@ All notable changes to @knowcode/doc-builder will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.5.3] - 2025-07-22
9
+
10
+ ### Fixed
11
+ - Fixed mobile menu not being visible when scrolled down by changing sidebar from absolute to fixed positioning
12
+ - Increased sidebar z-index to 1002 to ensure it appears above header and other elements
13
+ - Made floating menu button always visible on mobile (removed scroll-based visibility)
14
+ - Added overlay backdrop when mobile menu is open for better UX
15
+ - Fixed overlay and menu state synchronization across different toggle methods
16
+
17
+ ### Changed
18
+ - Mobile sidebar now uses `position: fixed` instead of `position: absolute`
19
+ - Floating menu button is now always visible on mobile for consistent access
20
+ - Added semi-transparent overlay when mobile menu is open
21
+ - Improved click-outside behavior to properly close menu and overlay
22
+
23
+ ## [1.5.2] - 2025-07-22
24
+
25
+ ### Added
26
+ - Floating menu button for mobile devices that appears when scrolling down
27
+ - Scroll detection to show/hide floating menu button based on scroll position
28
+ - Smooth animations and transitions for floating button appearance
29
+ - Icon changes between hamburger and close based on sidebar state
30
+
31
+ ### Fixed
32
+ - Fixed mobile menu inaccessibility when scrolled down the page
33
+ - Menu toggle button in header was scrolling off-screen, preventing sidebar access
34
+ - Mobile users can now always access the navigation menu regardless of scroll position
35
+
36
+ ### Background
37
+ - Users reported being unable to open the sidebar menu on mobile when scrolled down
38
+ - Implemented floating action button (FAB) pattern common in mobile apps
39
+ - Button appears when user scrolls past the header and disappears when scrolling back up
40
+
8
41
  ## [1.5.1] - 2025-07-21
9
42
 
10
43
  ### Added
package/README.md CHANGED
@@ -139,14 +139,6 @@ module.exports = {
139
139
  };
140
140
  ```
141
141
 
142
- ## Presets
143
-
144
- Use the `notion-inspired` preset for a clean, modern documentation style:
145
-
146
- ```bash
147
- npx @knowcode/doc-builder build --preset notion-inspired
148
- ```
149
-
150
142
  ## Commands
151
143
 
152
144
  ### set-production-url
@@ -954,19 +954,39 @@ tr:hover {
954
954
 
955
955
  /* Hide sidebar on mobile */
956
956
  .sidebar {
957
- position: absolute;
957
+ position: fixed;
958
958
  top: calc(var(--header-height) + var(--breadcrumb-height));
959
959
  left: 0;
960
960
  height: calc(100vh - var(--header-height) - var(--breadcrumb-height));
961
- z-index: 999;
961
+ z-index: 1002; /* Above header and floating button */
962
962
  transform: translateX(-100%);
963
963
  transition: transform var(--duration-normal) var(--easing-out);
964
+ box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15); /* Add shadow for depth */
964
965
  }
965
966
 
966
967
  .sidebar.open {
967
968
  transform: translateX(0);
968
969
  }
969
970
 
971
+ /* Mobile menu overlay */
972
+ .sidebar-overlay {
973
+ display: none;
974
+ position: fixed;
975
+ top: 0;
976
+ left: 0;
977
+ right: 0;
978
+ bottom: 0;
979
+ background: rgba(0, 0, 0, 0.5);
980
+ z-index: 1001; /* Below sidebar but above content */
981
+ opacity: 0;
982
+ transition: opacity var(--duration-normal);
983
+ }
984
+
985
+ .sidebar-overlay.active {
986
+ display: block;
987
+ opacity: 1;
988
+ }
989
+
970
990
  .main-wrapper {
971
991
  margin-left: 0;
972
992
  margin-top: var(--header-height); /* Only account for fixed header on mobile */
@@ -1578,6 +1598,62 @@ tr:hover {
1578
1598
 
1579
1599
  /* Remove custom positioning variables - tooltips always go right */
1580
1600
 
1601
+ /* Floating Menu Button */
1602
+ .floating-menu-toggle {
1603
+ position: fixed;
1604
+ bottom: var(--space-6);
1605
+ right: var(--space-6);
1606
+ width: 56px;
1607
+ height: 56px;
1608
+ border-radius: 50%;
1609
+ background: var(--color-accent-blue);
1610
+ color: white;
1611
+ border: none;
1612
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
1613
+ display: flex;
1614
+ align-items: center;
1615
+ justify-content: center;
1616
+ font-size: 1.25rem;
1617
+ cursor: pointer;
1618
+ z-index: 1001; /* Above sidebar */
1619
+ opacity: 0;
1620
+ transform: scale(0.8) translateY(20px);
1621
+ transition: all var(--duration-normal) var(--easing-out);
1622
+ -webkit-tap-highlight-color: transparent;
1623
+ }
1624
+
1625
+ .floating-menu-toggle.visible {
1626
+ opacity: 1;
1627
+ transform: scale(1) translateY(0);
1628
+ }
1629
+
1630
+ .floating-menu-toggle:hover {
1631
+ transform: scale(1.1) translateY(0);
1632
+ box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), 0 3px 6px rgba(0, 0, 0, 0.15);
1633
+ }
1634
+
1635
+ .floating-menu-toggle:active {
1636
+ transform: scale(0.95) translateY(0);
1637
+ }
1638
+
1639
+ .floating-menu-toggle i {
1640
+ transition: transform var(--duration-fast) var(--easing-out);
1641
+ }
1642
+
1643
+ .floating-menu-toggle:hover i {
1644
+ transform: rotate(90deg);
1645
+ }
1646
+
1647
+ /* Dark mode styles for floating button */
1648
+ .dark-mode .floating-menu-toggle {
1649
+ background: var(--color-accent-blue);
1650
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.2);
1651
+ }
1652
+
1653
+ .dark-mode .floating-menu-toggle:hover {
1654
+ box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4), 0 3px 6px rgba(0, 0, 0, 0.3);
1655
+ }
1656
+
1581
1657
  /* Mobile adjustments */
1582
1658
  @media (max-width: 768px) {
1583
1659
  /* Disable tooltips on mobile to prevent overlap issues */
package/assets/js/main.js CHANGED
@@ -512,12 +512,112 @@ function updateThemeIcon(theme) {
512
512
  const menuToggle = document.getElementById('menu-toggle');
513
513
  const sidebar = document.querySelector('.sidebar');
514
514
 
515
+ // Create overlay element for mobile
516
+ let overlay = document.querySelector('.sidebar-overlay');
517
+ if (!overlay && window.innerWidth <= 768) {
518
+ overlay = document.createElement('div');
519
+ overlay.className = 'sidebar-overlay';
520
+ document.body.appendChild(overlay);
521
+ }
522
+
515
523
  if (menuToggle) {
516
524
  menuToggle.addEventListener('click', () => {
517
525
  sidebar.classList.toggle('open');
526
+ if (overlay) {
527
+ overlay.classList.toggle('active');
528
+ }
529
+ });
530
+ }
531
+
532
+ // Close menu when clicking overlay
533
+ if (overlay) {
534
+ overlay.addEventListener('click', () => {
535
+ sidebar.classList.remove('open');
536
+ overlay.classList.remove('active');
518
537
  });
519
538
  }
520
539
 
540
+ // Floating Menu Button for Mobile
541
+ function initFloatingMenuButton() {
542
+ // Only initialize on mobile
543
+ if (window.innerWidth > 768) return;
544
+
545
+ // Check if button already exists
546
+ if (document.getElementById('floating-menu-toggle')) return;
547
+
548
+ // Create floating button
549
+ const floatingButton = document.createElement('button');
550
+ floatingButton.id = 'floating-menu-toggle';
551
+ floatingButton.className = 'floating-menu-toggle';
552
+ floatingButton.setAttribute('aria-label', 'Toggle menu');
553
+ floatingButton.innerHTML = '<i class="fas fa-bars"></i>';
554
+ floatingButton.style.display = 'flex'; // Always visible on mobile
555
+ floatingButton.classList.add('visible'); // Start visible
556
+
557
+ // Add to body
558
+ document.body.appendChild(floatingButton);
559
+
560
+ // Toggle sidebar on click
561
+ floatingButton.addEventListener('click', () => {
562
+ sidebar.classList.toggle('open');
563
+
564
+ // Handle overlay
565
+ let overlay = document.querySelector('.sidebar-overlay');
566
+ if (!overlay) {
567
+ overlay = document.createElement('div');
568
+ overlay.className = 'sidebar-overlay';
569
+ document.body.appendChild(overlay);
570
+
571
+ // Add overlay click handler
572
+ overlay.addEventListener('click', () => {
573
+ sidebar.classList.remove('open');
574
+ overlay.classList.remove('active');
575
+ floatingButton.querySelector('i').className = 'fas fa-bars';
576
+ });
577
+ }
578
+
579
+ if (overlay) {
580
+ overlay.classList.toggle('active');
581
+ }
582
+
583
+ // Update icon based on state
584
+ const icon = floatingButton.querySelector('i');
585
+ if (sidebar.classList.contains('open')) {
586
+ icon.className = 'fas fa-times';
587
+ } else {
588
+ icon.className = 'fas fa-bars';
589
+ }
590
+ });
591
+
592
+ // Remove scroll-based visibility - button is always visible on mobile
593
+
594
+ // Update icon when sidebar state changes from other sources
595
+ const observer = new MutationObserver(() => {
596
+ const icon = floatingButton.querySelector('i');
597
+ if (sidebar.classList.contains('open')) {
598
+ icon.className = 'fas fa-times';
599
+ } else {
600
+ icon.className = 'fas fa-bars';
601
+ }
602
+ });
603
+
604
+ observer.observe(sidebar, {
605
+ attributes: true,
606
+ attributeFilter: ['class']
607
+ });
608
+ }
609
+
610
+ // Initialize floating button on load and resize
611
+ document.addEventListener('DOMContentLoaded', initFloatingMenuButton);
612
+ window.addEventListener('resize', () => {
613
+ const existingButton = document.getElementById('floating-menu-toggle');
614
+ if (window.innerWidth > 768 && existingButton) {
615
+ existingButton.remove();
616
+ } else if (window.innerWidth <= 768 && !existingButton) {
617
+ initFloatingMenuButton();
618
+ }
619
+ });
620
+
521
621
  // Prevent sidebar from closing when clicking nav items
522
622
  // Only close when clicking outside the sidebar or the close button
523
623
  document.addEventListener('click', (e) => {
@@ -525,11 +625,21 @@ document.addEventListener('click', (e) => {
525
625
  if (window.innerWidth <= 768) {
526
626
  const isClickInsideSidebar = sidebar && sidebar.contains(e.target);
527
627
  const isMenuToggle = e.target.closest('#menu-toggle');
628
+ const isFloatingButton = e.target.closest('#floating-menu-toggle');
528
629
  const isNavItem = e.target.closest('.nav-item, .nav-title');
630
+ const overlay = document.querySelector('.sidebar-overlay');
529
631
 
530
632
  // Close sidebar only if clicking outside AND not on menu toggle AND not on nav items
531
- if (!isClickInsideSidebar && !isMenuToggle && !isNavItem && sidebar?.classList.contains('open')) {
633
+ if (!isClickInsideSidebar && !isMenuToggle && !isFloatingButton && !isNavItem && sidebar?.classList.contains('open')) {
532
634
  sidebar.classList.remove('open');
635
+ if (overlay) {
636
+ overlay.classList.remove('active');
637
+ }
638
+ // Update floating button icon if it exists
639
+ const floatingBtn = document.getElementById('floating-menu-toggle');
640
+ if (floatingBtn) {
641
+ floatingBtn.querySelector('i').className = 'fas fa-bars';
642
+ }
533
643
  }
534
644
  }
535
645
  });
package/html/README.html CHANGED
@@ -58,8 +58,8 @@
58
58
  "name": "Knowcode Ltd",
59
59
  "url": "https://knowcode.tech"
60
60
  },
61
- "datePublished": "2025-07-21T20:39:06.468Z",
62
- "dateModified": "2025-07-21T20:39:06.468Z",
61
+ "datePublished": "2025-07-22T06:01:14.255Z",
62
+ "dateModified": "2025-07-22T06:01:14.255Z",
63
63
  "mainEntityOfPage": {
64
64
  "@type": "WebPage",
65
65
  "@id": "https://doc-builder-delta.vercel.app/README.html"
@@ -92,7 +92,7 @@
92
92
 
93
93
  <div class="header-actions">
94
94
  <div class="deployment-info">
95
- <span class="deployment-date" title="Built with doc-builder v1.5.0">Last updated: Jul 21, 2025, 08:39 PM UTC</span>
95
+ <span class="deployment-date" title="Built with doc-builder v1.5.2">Last updated: Jul 22, 2025, 06:01 AM UTC</span>
96
96
  </div>
97
97
 
98
98
 
@@ -142,7 +142,6 @@
142
142
  </a>
143
143
  <div class="nav-content" >
144
144
  <a href="/README.html" class="nav-item active" data-tooltip="@knowcode/doc-builder."><i class="fas fa-file-alt"></i> Overview</a>
145
- <a href="/claude-workflow-guide.html" class="nav-item" data-tooltip="This guide demonstrates an efficient workflow for using Claude Code with a refined CLAUDE.md file to create high-quality documentation and deploy it..."><i class="fas fa-file-alt"></i> Claude Workflow Guide</a>
146
145
  <a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="fas fa-file-alt"></i> Documentation Index</a>
147
146
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing and configuring the Vercel CLI across different operating systems and environments."><i class="fas fa-file-alt"></i> Vercel Cli Setup Guide</a>
148
147
  <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide provides a detailed explanation of every prompt you&#039;ll encounter during the first-time Vercel setup process when using."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
@@ -152,6 +151,7 @@
152
151
  </a>
153
152
  <div class="nav-content" id="nav-guides-1">
154
153
  <a href="/guides/authentication-guide.html" class="nav-item" data-tooltip="This guide explains how to configure and use the built-in authentication feature in @knowcode/doc-builder to protect your documentation with basic..."><i class="fas fa-file-alt"></i> Authentication Guide</a>
154
+ <a href="/guides/claude-workflow-guide.html" class="nav-item" data-tooltip="This guide demonstrates an efficient workflow for using Claude Code with a refined CLAUDE.md file to create high-quality documentation and deploy it..."><i class="fas fa-file-alt"></i> Claude Workflow Guide</a>
155
155
  <a href="/guides/documentation-standards.html" class="nav-item" data-tooltip="This document defines the documentation standards and conventions for the @knowcode/doc-builder project."><i class="fas fa-file-alt"></i> Documentation Standards</a>
156
156
  <a href="/guides/seo-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features to help your documentation rank better in search results and..."><i class="fas fa-file-alt"></i> Seo Guide</a>
157
157
  <a href="/guides/troubleshooting-guide.html" class="nav-item" data-tooltip="This guide helps you resolve common issues when using @knowcode/doc-builder."><i class="fas fa-file-alt"></i> Troubleshooting Guide</a></div></div>
@@ -58,8 +58,8 @@
58
58
  "name": "Knowcode Ltd",
59
59
  "url": "https://knowcode.tech"
60
60
  },
61
- "datePublished": "2025-07-21T20:39:06.478Z",
62
- "dateModified": "2025-07-21T20:39:06.478Z",
61
+ "datePublished": "2025-07-21T20:43:20.146Z",
62
+ "dateModified": "2025-07-21T20:43:20.146Z",
63
63
  "mainEntityOfPage": {
64
64
  "@type": "WebPage",
65
65
  "@id": "https://doc-builder-delta.vercel.app/claude-workflow-guide.html"
@@ -92,7 +92,7 @@
92
92
 
93
93
  <div class="header-actions">
94
94
  <div class="deployment-info">
95
- <span class="deployment-date" title="Built with doc-builder v1.5.0">Last updated: Jul 21, 2025, 08:39 PM UTC</span>
95
+ <span class="deployment-date" title="Built with doc-builder v1.5.1">Last updated: Jul 21, 2025, 08:43 PM UTC</span>
96
96
  </div>
97
97
 
98
98
 
@@ -1578,6 +1578,62 @@ tr:hover {
1578
1578
 
1579
1579
  /* Remove custom positioning variables - tooltips always go right */
1580
1580
 
1581
+ /* Floating Menu Button */
1582
+ .floating-menu-toggle {
1583
+ position: fixed;
1584
+ bottom: var(--space-6);
1585
+ right: var(--space-6);
1586
+ width: 56px;
1587
+ height: 56px;
1588
+ border-radius: 50%;
1589
+ background: var(--color-accent-blue);
1590
+ color: white;
1591
+ border: none;
1592
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
1593
+ display: flex;
1594
+ align-items: center;
1595
+ justify-content: center;
1596
+ font-size: 1.25rem;
1597
+ cursor: pointer;
1598
+ z-index: 1001; /* Above sidebar */
1599
+ opacity: 0;
1600
+ transform: scale(0.8) translateY(20px);
1601
+ transition: all var(--duration-normal) var(--easing-out);
1602
+ -webkit-tap-highlight-color: transparent;
1603
+ }
1604
+
1605
+ .floating-menu-toggle.visible {
1606
+ opacity: 1;
1607
+ transform: scale(1) translateY(0);
1608
+ }
1609
+
1610
+ .floating-menu-toggle:hover {
1611
+ transform: scale(1.1) translateY(0);
1612
+ box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2), 0 3px 6px rgba(0, 0, 0, 0.15);
1613
+ }
1614
+
1615
+ .floating-menu-toggle:active {
1616
+ transform: scale(0.95) translateY(0);
1617
+ }
1618
+
1619
+ .floating-menu-toggle i {
1620
+ transition: transform var(--duration-fast) var(--easing-out);
1621
+ }
1622
+
1623
+ .floating-menu-toggle:hover i {
1624
+ transform: rotate(90deg);
1625
+ }
1626
+
1627
+ /* Dark mode styles for floating button */
1628
+ .dark-mode .floating-menu-toggle {
1629
+ background: var(--color-accent-blue);
1630
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.2);
1631
+ }
1632
+
1633
+ .dark-mode .floating-menu-toggle:hover {
1634
+ box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4), 0 3px 6px rgba(0, 0, 0, 0.3);
1635
+ }
1636
+
1581
1637
  /* Mobile adjustments */
1582
1638
  @media (max-width: 768px) {
1583
1639
  /* Disable tooltips on mobile to prevent overlap issues */
@@ -58,8 +58,8 @@
58
58
  "name": "Knowcode Ltd",
59
59
  "url": "https://knowcode.tech"
60
60
  },
61
- "datePublished": "2025-07-21T20:39:06.481Z",
62
- "dateModified": "2025-07-21T20:39:06.481Z",
61
+ "datePublished": "2025-07-22T06:01:14.265Z",
62
+ "dateModified": "2025-07-22T06:01:14.265Z",
63
63
  "mainEntityOfPage": {
64
64
  "@type": "WebPage",
65
65
  "@id": "https://doc-builder-delta.vercel.app/documentation-index.html"
@@ -92,7 +92,7 @@
92
92
 
93
93
  <div class="header-actions">
94
94
  <div class="deployment-info">
95
- <span class="deployment-date" title="Built with doc-builder v1.5.0">Last updated: Jul 21, 2025, 08:39 PM UTC</span>
95
+ <span class="deployment-date" title="Built with doc-builder v1.5.2">Last updated: Jul 22, 2025, 06:01 AM UTC</span>
96
96
  </div>
97
97
 
98
98
 
@@ -142,7 +142,6 @@
142
142
  </a>
143
143
  <div class="nav-content" >
144
144
  <a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="fas fa-file-alt"></i> Overview</a>
145
- <a href="/claude-workflow-guide.html" class="nav-item" data-tooltip="This guide demonstrates an efficient workflow for using Claude Code with a refined CLAUDE.md file to create high-quality documentation and deploy it..."><i class="fas fa-file-alt"></i> Claude Workflow Guide</a>
146
145
  <a href="/documentation-index.html" class="nav-item active" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="fas fa-file-alt"></i> Documentation Index</a>
147
146
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing and configuring the Vercel CLI across different operating systems and environments."><i class="fas fa-file-alt"></i> Vercel Cli Setup Guide</a>
148
147
  <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide provides a detailed explanation of every prompt you&#039;ll encounter during the first-time Vercel setup process when using."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
@@ -152,6 +151,7 @@
152
151
  </a>
153
152
  <div class="nav-content collapsed" id="nav-guides-1">
154
153
  <a href="/guides/authentication-guide.html" class="nav-item" data-tooltip="This guide explains how to configure and use the built-in authentication feature in @knowcode/doc-builder to protect your documentation with basic..."><i class="fas fa-file-alt"></i> Authentication Guide</a>
154
+ <a href="/guides/claude-workflow-guide.html" class="nav-item" data-tooltip="This guide demonstrates an efficient workflow for using Claude Code with a refined CLAUDE.md file to create high-quality documentation and deploy it..."><i class="fas fa-file-alt"></i> Claude Workflow Guide</a>
155
155
  <a href="/guides/documentation-standards.html" class="nav-item" data-tooltip="This document defines the documentation standards and conventions for the @knowcode/doc-builder project."><i class="fas fa-file-alt"></i> Documentation Standards</a>
156
156
  <a href="/guides/seo-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features to help your documentation rank better in search results and..."><i class="fas fa-file-alt"></i> Seo Guide</a>
157
157
  <a href="/guides/troubleshooting-guide.html" class="nav-item" data-tooltip="This guide helps you resolve common issues when using @knowcode/doc-builder."><i class="fas fa-file-alt"></i> Troubleshooting Guide</a></div></div>
@@ -58,8 +58,8 @@
58
58
  "name": "Knowcode Ltd",
59
59
  "url": "https://knowcode.tech"
60
60
  },
61
- "datePublished": "2025-07-21T20:39:06.483Z",
62
- "dateModified": "2025-07-21T20:39:06.483Z",
61
+ "datePublished": "2025-07-22T06:01:14.269Z",
62
+ "dateModified": "2025-07-22T06:01:14.269Z",
63
63
  "mainEntityOfPage": {
64
64
  "@type": "WebPage",
65
65
  "@id": "https://doc-builder-delta.vercel.app/guides/authentication-guide.html"
@@ -98,7 +98,7 @@
98
98
 
99
99
  <div class="header-actions">
100
100
  <div class="deployment-info">
101
- <span class="deployment-date" title="Built with doc-builder v1.5.0">Last updated: Jul 21, 2025, 08:39 PM UTC</span>
101
+ <span class="deployment-date" title="Built with doc-builder v1.5.2">Last updated: Jul 22, 2025, 06:01 AM UTC</span>
102
102
  </div>
103
103
 
104
104
 
@@ -148,7 +148,6 @@
148
148
  </a>
149
149
  <div class="nav-content" >
150
150
  <a href="/README.html" class="nav-item" data-tooltip="@knowcode/doc-builder."><i class="fas fa-file-alt"></i> Overview</a>
151
- <a href="/claude-workflow-guide.html" class="nav-item" data-tooltip="This guide demonstrates an efficient workflow for using Claude Code with a refined CLAUDE.md file to create high-quality documentation and deploy it..."><i class="fas fa-file-alt"></i> Claude Workflow Guide</a>
152
151
  <a href="/documentation-index.html" class="nav-item" data-tooltip="This directory contains additional documentation for the @knowcode/doc-builder project, organized by topic and purpose."><i class="fas fa-file-alt"></i> Documentation Index</a>
153
152
  <a href="/vercel-cli-setup-guide.html" class="nav-item" data-tooltip="This guide provides comprehensive instructions for installing and configuring the Vercel CLI across different operating systems and environments."><i class="fas fa-file-alt"></i> Vercel Cli Setup Guide</a>
154
153
  <a href="/vercel-first-time-setup-guide.html" class="nav-item" data-tooltip="This guide provides a detailed explanation of every prompt you&#039;ll encounter during the first-time Vercel setup process when using."><i class="fas fa-file-alt"></i> Vercel First Time Setup Guide</a></div></div>
@@ -158,6 +157,7 @@
158
157
  </a>
159
158
  <div class="nav-content" id="nav-guides-1">
160
159
  <a href="/guides/authentication-guide.html" class="nav-item active" data-tooltip="This guide explains how to configure and use the built-in authentication feature in @knowcode/doc-builder to protect your documentation with basic..."><i class="fas fa-file-alt"></i> Authentication Guide</a>
160
+ <a href="/guides/claude-workflow-guide.html" class="nav-item" data-tooltip="This guide demonstrates an efficient workflow for using Claude Code with a refined CLAUDE.md file to create high-quality documentation and deploy it..."><i class="fas fa-file-alt"></i> Claude Workflow Guide</a>
161
161
  <a href="/guides/documentation-standards.html" class="nav-item" data-tooltip="This document defines the documentation standards and conventions for the @knowcode/doc-builder project."><i class="fas fa-file-alt"></i> Documentation Standards</a>
162
162
  <a href="/guides/seo-guide.html" class="nav-item" data-tooltip="@knowcode/doc-builder includes comprehensive SEO (Search Engine Optimization) features to help your documentation rank better in search results and..."><i class="fas fa-file-alt"></i> Seo Guide</a>
163
163
  <a href="/guides/troubleshooting-guide.html" class="nav-item" data-tooltip="This guide helps you resolve common issues when using @knowcode/doc-builder."><i class="fas fa-file-alt"></i> Troubleshooting Guide</a></div></div>