
@@ -20,12 +20,12 @@ Postiz helps you to manage all your social media accounts.
* Exchange or buy posts from other members on the marketplace.
- >}
title="Learn how to install the project and start using it"
href="/quickstart"
/>
- >}
title="Learn the architecture of the project"
href="/howitworks"
diff --git a/pages/providers/_meta.json b/pages/providers/_meta.js
similarity index 89%
rename from pages/providers/_meta.json
rename to pages/providers/_meta.js
index 7fab888..5b5db0c 100644
--- a/pages/providers/_meta.json
+++ b/pages/providers/_meta.js
@@ -1,4 +1,4 @@
-{
+export default {
"facebook": "Facebook",
"instagram": "Instagram",
"linkedin": "Linkedin",
@@ -6,4 +6,4 @@
"mastodon": "Mastodon",
"x": "X",
"youtube": "YouTube"
-}
+};
diff --git a/theme.config.tsx b/theme.config.tsx
index ee44a75..2d4ca20 100644
--- a/theme.config.tsx
+++ b/theme.config.tsx
@@ -65,15 +65,17 @@ const themeConfig: DocsThemeConfig = {
},
docsRepositoryBase: "https://github.com/gitroomhq/postiz-docs/blob/main",
footer: {
- text: "Gitroom Limited. All rights reserved.",
+ content: "Gitroom Limited. All rights reserved.",
},
darkMode: false,
nextThemes: {
defaultTheme: "dark",
forcedTheme: "dark",
},
- primaryHue: 280,
- primarySaturation: 100,
+ color: {
+ hue: 280,
+ saturation: 100,
+ }
};
export default themeConfig;