This is an automated email from the ASF dual-hosted git repository.
jamesbognar pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/juneau.git
The following commit(s) were added to refs/heads/master by this push:
new c243142b3 New docs folder.
c243142b3 is described below
commit c243142b38cae15df51d0332d84d735737034194
Author: James Bognar <[email protected]>
AuthorDate: Fri Sep 12 15:51:03 2025 -0400
New docs folder.
---
docs/index.html | 93 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 93 insertions(+)
diff --git a/docs/index.html b/docs/index.html
new file mode 100644
index 000000000..8d26ab1c5
--- /dev/null
+++ b/docs/index.html
@@ -0,0 +1,93 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <title>Juneau Framework</title>
+ <style>
+ body {
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
+ line-height: 1.6;
+ margin: 0;
+ padding: 20px;
+ background-color: #f5f5f5;
+ }
+ .container {
+ max-width: 800px;
+ margin: 0 auto;
+ background: white;
+ padding: 40px;
+ border-radius: 8px;
+ box-shadow: 0 2px 10px rgba(0,0,0,0.1);
+ }
+ h1 {
+ color: #333;
+ text-align: center;
+ border-bottom: 3px solid #007cba;
+ padding-bottom: 10px;
+ }
+ .description {
+ font-size: 18px;
+ color: #666;
+ text-align: center;
+ margin: 20px 0;
+ }
+ .api-link {
+ display: block;
+ background: #007cba;
+ color: white;
+ text-decoration: none;
+ padding: 15px 30px;
+ border-radius: 5px;
+ text-align: center;
+ font-size: 18px;
+ margin: 30px auto;
+ max-width: 300px;
+ transition: background-color 0.3s;
+ }
+ .api-link:hover {
+ background: #005a8b;
+ }
+ .features {
+ margin: 30px 0;
+ }
+ .features h2 {
+ color: #333;
+ margin-bottom: 15px;
+ }
+ .features ul {
+ padding-left: 20px;
+ }
+ .features li {
+ margin: 8px 0;
+ color: #555;
+ }
+ .note {
+ background: #e7f3ff;
+ border-left: 4px solid #007cba;
+ padding: 15px;
+ margin: 20px 0;
+ border-radius: 0 5px 5px 0;
+ }
+ .footer {
+ text-align: center;
+ margin-top: 40px;
+ padding-top: 20px;
+ border-top: 1px solid #eee;
+ color: #777;
+ font-size: 14px;
+ }
+ </style>
+</head>
+<body>
+ <div class="container">
+ <h1>TODO</h1>
+ </div>
+ <script>
+ // Auto-redirect to API docs if directly accessing index
+ if (window.location.hash === '#api') {
+ window.location.href = 'api/';
+ }
+ </script>
+</body>
+</html>