From e1b66304603f16642343870c0f500a66f46e0c2b Mon Sep 17 00:00:00 2001
From: future3OOO <46719676+future3OOO@users.noreply.github.com>
Date: Tue, 27 Jun 2023 20:42:41 +1200
Subject: [PATCH 1/4] Update index.js
removed: WoolyPooly mining pool
---
pages/hub/index.js | 1 -
1 file changed, 1 deletion(-)
diff --git a/pages/hub/index.js b/pages/hub/index.js
index 7653c37..00bc304 100644
--- a/pages/hub/index.js
+++ b/pages/hub/index.js
@@ -360,7 +360,6 @@ export default function Hub() {
Grinmint
2Miners SOLO
HeroMiners
- WoolyPooly
From cb71792b6ffec5771d6582b7ff3274fbe4f9691f Mon Sep 17 00:00:00 2001
From: future3OOO <46719676+future3OOO@users.noreply.github.com>
Date: Tue, 27 Jun 2023 20:47:21 +1200
Subject: [PATCH 2/4] Update index.js
Removed dead mining pool: WoolyPooly
---
pages/hub/index.js | 1 -
1 file changed, 1 deletion(-)
diff --git a/pages/hub/index.js b/pages/hub/index.js
index 7653c37..00bc304 100644
--- a/pages/hub/index.js
+++ b/pages/hub/index.js
@@ -360,7 +360,6 @@ export default function Hub() {
Grinmint
2Miners SOLO
HeroMiners
- WoolyPooly
From c3fb55308b51799e15f5a3a1c4e7b1a1686e9c1e Mon Sep 17 00:00:00 2001
From: future3OOO <46719676+future3OOO@users.noreply.github.com>
Date: Tue, 27 Jun 2023 21:02:03 +1200
Subject: [PATCH 3/4] Update approval-scheme.js
update to approval scheme
---
pages/docs/approval-scheme.js | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/pages/docs/approval-scheme.js b/pages/docs/approval-scheme.js
index 661c410..aeb5114 100644
--- a/pages/docs/approval-scheme.js
+++ b/pages/docs/approval-scheme.js
@@ -23,18 +23,23 @@ export default function ApprovalScheme() {
1 |
CC meeting notes, etc |
+
+ | hub |
+ 1 |
+ code, tools, sites, memes, marketing, art |
+
| security |
4 |
signing, verifying |
- | agenda |
+ finance |
4 |
public CC fund documentation |
- | agenda |
+ docs |
2 |
CC related documents |
@@ -44,4 +49,4 @@ export default function ApprovalScheme() {
)
-}
\ No newline at end of file
+}
From 55704dad4bc5508c74c5c9389fc07b631f52641b Mon Sep 17 00:00:00 2001
From: future3OOO <46719676+future3OOO@users.noreply.github.com>
Date: Tue, 4 Jul 2023 18:12:12 +1200
Subject: [PATCH 4/4] Create styles.module.css
---
pages/pages/docs/styles.module.css | 55 ++++++++++++++++++++++++++++++
1 file changed, 55 insertions(+)
create mode 100644 pages/pages/docs/styles.module.css
diff --git a/pages/pages/docs/styles.module.css b/pages/pages/docs/styles.module.css
new file mode 100644
index 0000000..017e908
--- /dev/null
+++ b/pages/pages/docs/styles.module.css
@@ -0,0 +1,55 @@
+.my-container {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: flex-start; /* Update to align items to the top */
+ width: 100%;
+ min-height: 100vh; /* Update to min-height to ensure content is at the top */
+ padding-top: 50px; /* Adjust the value to increase or decrease the space at the top */
+}
+
+.header-1 {
+ margin-top: 10px;
+ margin-bottom: 50px;
+ font-size: 2em;
+ font-weight: bold;
+ color: var(--text-color);
+}
+
+.yellow-header {
+ background-color: #fef102;
+}
+
+.content {
+ display: flex;
+ flex-direction: column;
+ align-items: flex-start; /* Update to align text to the left */
+ gap: 20px;
+ text-align: center;
+}
+
+.paragraph {
+ width: 100%;
+ text-align: start;
+}
+
+.table {
+ table-layout: auto;
+ font-size: 1em;
+ width: max-content;
+ padding: 10px;
+}
+
+.border-frame {
+ border: 1px solid black;
+}
+
+.border-frame td,
+.border-frame th {
+ border: 2px solid black;
+}
+
+.dark {
+ background-color: var(--dark-background); /* Add dark background color variable */
+ color: var(--dark-text-color); /* Add dark text color variable */
+}