apidocly 1.0.4 → 1.0.6

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apidocly",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "API documentation generator with beautiful dark UI, password protection, and OpenAPI/Rest client export.",
5
5
  "main": "lib/index.js",
6
6
  "bin": {
@@ -2852,3 +2852,30 @@ a:hover {
2852
2852
  font-family: var(--font-mono);
2853
2853
  color: var(--primary);
2854
2854
  }
2855
+
2856
+ /* ========================================
2857
+ FOOTER CREDIT
2858
+ ======================================== */
2859
+
2860
+ .app-footer {
2861
+ text-align: center;
2862
+ padding: 2rem 1rem;
2863
+ font-size: 0.8125rem;
2864
+ color: var(--muted-foreground);
2865
+ opacity: 0.6;
2866
+ transition: opacity 0.2s;
2867
+ }
2868
+
2869
+ .app-footer:hover {
2870
+ opacity: 0.85;
2871
+ }
2872
+
2873
+ .app-footer a {
2874
+ color: var(--primary);
2875
+ text-decoration: none;
2876
+ font-weight: 500;
2877
+ }
2878
+
2879
+ .app-footer a:hover {
2880
+ text-decoration: underline;
2881
+ }
@@ -244,6 +244,11 @@
244
244
  </div>
245
245
  </div>
246
246
  </main>
247
+
248
+ <!-- Footer Credit -->
249
+ <footer class="app-footer">
250
+ <span>Documentation generated with <a href="https://apidocly.com" target="_blank" rel="noopener noreferrer">apidocly</a></span>
251
+ </footer>
247
252
  </div>
248
253
 
249
254
  <script src="api_data.js?v={{CACHE_VERSION}}"></script>