From 77a15ff6505b39f1955918767d78777e8a500a0b Mon Sep 17 00:00:00 2001
From: Daniel <50356015+danny007in@users.noreply.github.com>
Date: Sun, 23 Jul 2023 21:25:18 +0530
Subject: [PATCH] docs license
---
src/html/components/dashboard/_sidenav.astro | 13 +++-
src/html/components/docs/license.mdx | 9 +++
src/html/pages/docs/license.astro | 71 ++++++++++++++++++++
3 files changed, 91 insertions(+), 2 deletions(-)
create mode 100644 src/html/components/docs/license.mdx
create mode 100644 src/html/pages/docs/license.astro
diff --git a/src/html/components/dashboard/_sidenav.astro b/src/html/components/dashboard/_sidenav.astro
index f2a532d91..1edbc27cb 100644
--- a/src/html/components/dashboard/_sidenav.astro
+++ b/src/html/components/dashboard/_sidenav.astro
@@ -338,7 +338,7 @@ const htmlPath = convertPathToHtml(path);
href="#"
class:list={["nav-link", mainPage === "components" && "active"]}
>
-
+
Components
@@ -370,7 +370,7 @@ const htmlPath = convertPathToHtml(path);
href="#"
class:list={["nav-link", mainPage === "javascript" && "active"]}
>
-
+
Javascript
@@ -397,6 +397,15 @@ const htmlPath = convertPathToHtml(path);
Browser Support
+
+
+
+ License
+
+
diff --git a/src/html/components/docs/license.mdx b/src/html/components/docs/license.mdx
new file mode 100644
index 000000000..8a77981fa
--- /dev/null
+++ b/src/html/components/docs/license.mdx
@@ -0,0 +1,9 @@
+AdminLTE is an open source project that is licensed under the [MIT license](https://opensource.org/licenses/MIT). This allows you to do pretty much anything you want as long as you include the copyright in "all copies or substantial portions of the Software." Attribution is not required (though very much appreciated).
+
+What You Are Allowed To Do With AdminLTE
+
+- Use in commercial projects.
+- Use in personal/private projects.
+- Modify and change the work.
+- Distribute the code.
+- Sublicense: incorporate the work into something that has a more restrictive license.
diff --git a/src/html/pages/docs/license.astro b/src/html/pages/docs/license.astro
new file mode 100644
index 000000000..31992d76f
--- /dev/null
+++ b/src/html/pages/docs/license.astro
@@ -0,0 +1,71 @@
+---
+import Head from "@components/_head.astro";
+import Footer from "@components/dashboard/_footer.astro";
+import Topbar from "@components/dashboard/_topbar.astro";
+import License from "@components/docs/license.mdx";
+import Sidenav from "@components/dashboard/_sidenav.astro";
+import Scripts from "@components/_scripts.astro";
+
+const title = "License | AdminLTE 4";
+const path = "../../../dist";
+const mainPage = "docs";
+const page = "license";
+---
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+