diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 0000000..13ee2b0
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,3 @@
+{
+ "nuxt.isNuxtApp": false
+}
\ No newline at end of file
diff --git a/docs/index.md b/docs/index.md
index aa9e0a7..14912c5 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -14,4 +14,40 @@ hero:
- theme: alt
text: Join the Discord
link: https://discord.gg/WnN8hj2Fyg
----
\ No newline at end of file
+
+features:
+ - icon:
+ title: Community made
+ details: Documentation is written for developers, by developers.
+ - icon:
+ title: Open source
+ details: Anyone can contribute to our documentation, correcting mistakes and adding knowledge.
+ - icon:
+ title: Projects
+ details: Many Sapiens-OSS projects provide documentation for developers on this wiki.
+ - icon:
+ title: Developer support
+ details: Our Discord full of technically-minded developers are willing to provide help.
+---
+
+
diff --git a/docs/public/index.css b/docs/public/index.css
index f02980b..3b029a5 100644
--- a/docs/public/index.css
+++ b/docs/public/index.css
@@ -1,15 +1,26 @@
@font-face {
- font-family: 'SapiensLight';
- src: url('/sapienslight-webfont.woff2') format('woff2'), url('/sapienslight-webfont.woff') format('woff'), url('/sapienslight-webfont.ttf') format('truetype');
- font-weight: normal;
- font-style: normal;
+ font-family: "SapiensLight";
+ src: url("/sapienslight-webfont.woff2") format("woff2"),
+ url("/sapienslight-webfont.woff") format("woff"),
+ url("/sapienslight-webfont.ttf") format("truetype");
+ font-weight: normal;
+ font-style: normal;
}
h1 {
- font-family: "SapiensLight";
+ font-family: "SapiensLight";
}
.vp-doc > div > h1 {
- font-size: 45px !important;
- text-align: center;
-}
\ No newline at end of file
+ font-size: 45px !important;
+ text-align: center;
+}
+
+:root {
+ --vp-c-accent: rgb(218, 180, 11);
+ --vp-c-brand: #f97316;
+ --vp-c-brand-light: #f97316;
+ --vp-c-brand-lighter: #fb923c;
+ --vp-c-brand-dark: #c2410c;
+ --vp-c-brand-darker: #9a3412;
+}