diff --git a/docusaurus.config.js b/docusaurus.config.js
index e717521..b5c6d0a 100644
--- a/docusaurus.config.js
+++ b/docusaurus.config.js
@@ -87,21 +87,26 @@ const config = {
position: 'left',
label: 'Season 2',
},
+ {
+ type: 'dropdown',
+ label: 'Dynmap',
+ position: 'left',
+ items: [
+ {
+ to: '/dynmap_smp',
+ label: 'SMP'
+ },
+ {
+ to: '/dynmap_creative',
+ label: 'Creative'
+ }
+ ],
+ },
{
href: 'https://survival-pi.tebex.io/',
label: 'Donate',
position: 'right',
},
- {
- href: 'https://map.survival-pi.com/',
- label: 'Map:SMP',
- position: 'left',
- },
- {
- href: 'https://cmap.survival-pi.com/',
- label: 'Map:Creative',
- position: 'left',
- },
{
href: 'https://github.com/aleabodo/survival-pi-docs',
label: 'GitHub',
diff --git a/src/pages/dynmap_creative.js b/src/pages/dynmap_creative.js
new file mode 100644
index 0000000..884c3ac
--- /dev/null
+++ b/src/pages/dynmap_creative.js
@@ -0,0 +1,22 @@
+import React from 'react';
+import Layout from '@theme/Layout';
+
+export default function Hello() {
+ return (
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/pages/dynmap_smp.js b/src/pages/dynmap_smp.js
new file mode 100644
index 0000000..d705046
--- /dev/null
+++ b/src/pages/dynmap_smp.js
@@ -0,0 +1,22 @@
+import React from 'react';
+import Layout from '@theme/Layout';
+
+export default function Hello() {
+ return (
+
+
+
+
+
+ );
+}
\ No newline at end of file