Skip to content

Commit

Permalink
more changes
Browse files Browse the repository at this point in the history
  • Loading branch information
iiPythonx committed Sep 5, 2024
1 parent c4e20a5 commit 78f64a7
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 4 deletions.
15 changes: 14 additions & 1 deletion .vitepress/config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,20 @@ export default defineConfig({
logo: "/logo.png",
nav: [
{ text: "Home", link: "/" },
{ text: "Application API", link: "/apps/quickstart" }
{ text: "About", link: "/what-is-administer" },
{
text: "Application API",
items: [
{ text: "Quickstart", link: "/apps/quickstart" },
{
text: "Namespaces",
items: [
{ text: "App", link: "/apps/namespace/app" },
{ text: "BuiltAPI", link: "/apps/namespace/builtapi" }
]
}
]
}
],
sidebar: [
{
Expand Down
4 changes: 4 additions & 0 deletions .vitepress/theme/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import DefaultTheme from "vitepress/theme";
import "./variables.css";

export default DefaultTheme;
4 changes: 4 additions & 0 deletions .vitepress/theme/variables.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
:root {
--vp-home-hero-name-color: transparent;
--vp-home-hero-name-background: -webkit-linear-gradient(120deg, #2548c2, #14161c);
}
9 changes: 6 additions & 3 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,14 @@ hero:
alt: "Administer Logo"

features:
- title: Customizable
- icon: 🛠️
title: Customizable
details: Customize the interface, text, or anything else you'd like.
- title: Modular
- icon: 🧰
title: Modular
details: Get all the commands that your team needs, none of what you don't.
- title: Open Source
- icon: 🔓
title: Open Source
details: The entire backend and frontend is open source with an open API and documentation.
---

0 comments on commit 78f64a7

Please sign in to comment.