diff --git a/README.md b/README.md index 812b3057..d7e7b754 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ WhyDRS is a free educational resource about the financial markets in the United ## Quick Start -[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://github.dev/WhyDRS/DAO-docs) +[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://github.dev/WhyDRS/DUNA-docs) ### Prerequisites diff --git a/docusaurus.config.js b/docusaurus.config.js index 3c2c222c..2ab01b86 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -2,8 +2,7 @@ import {themes as prismThemes} from 'prism-react-renderer'; -/** @type {import('@docusaurus/types').Config} */ -const config = { +module.exports = { title: 'WhyDRS', tagline: 'Not your name, not your shares. πŸ”', favicon: 'imgs/brand/favicon.ico', @@ -27,7 +26,6 @@ const config = { presets: [ [ 'classic', - /** @type {import('@docusaurus/preset-classic').Options} */ ({ docs: { sidebarPath: './sidebars.js', @@ -59,7 +57,6 @@ const config = { ], themeConfig: - /** @type {import('@docusaurus/preset-classic').ThemeConfig} */ ({ image: 'imgs/brand/jpg/social-card.jpg', navbar: { @@ -153,6 +150,10 @@ const config = { darkTheme: prismThemes.dracula, }, }), + stylesheets: [ + { + href: '/css/custom.css', + type: 'text/css', + }, + ], }; - -export default config; diff --git a/meetings/2024-04-01.md b/meetings/2024-04-01.md index 863201bf..e4635fd8 100644 --- a/meetings/2024-04-01.md +++ b/meetings/2024-04-01.md @@ -3,7 +3,12 @@ slug: 17-nov-2024 title: Continuing Decentralization Growth Efforts --- -[embed of meeting recordings] +
+ +
## Agenda diff --git a/meetings/TODO.md b/meetings/TODO.md new file mode 100644 index 00000000..6b7aff99 --- /dev/null +++ b/meetings/TODO.md @@ -0,0 +1,34 @@ +get the files +throw in folder +pin and seednet + +# Pending notes + +Here are some notes I took from the meeting yesterday as well: + +@Gorillionaire2 would like to focus on the back end of the Database and resources, rather than the front end, so if we could find some more community members to assist with front end development and acclimate to GitHub it would be a big help. + +@NYTEMODE and @Jersan , your names were brought up that seem to have the skills. Are you two interested? πŸ™‚ + +New Repo procedure- set up a new issue within WhyDRS checking for community agreement, then create new repo. For RNN Repo, issues are used to track articles in progress and sources, then β€˜completed’ when the article can be published. @Altair @WeAreTheDerelictCats @bobmahalo , would love to assist to onboard and consider article/issue development. Maybe we transition existing articles to a new host within WhyDRS. + +Need to review the contribution standards on the github to make sure that the free and open contributions can exist while also discouraging that the organization sponsors or agrees with that bad behavior or bad faith discussion. Above example, Bob mentioned Heather Cox Anderson had to deal with a lot of live pornography during her livestreams on Meta. + +For Meta Channel in Discord- Transition to weekly meetings, add a politics channel, should there be a GitHub repo for the Discord? (include: links out to bots, suggestion for improvement?), TTS Bot added so that people can text in and have easier input (like Moonfire) + +Discussed a registry of github users, which would allow for more nuanced breakdown of permissions structure vs membership which is binary. A registry could also include what skills a person has, what they help with, what they have commented on. +Jersan + +https://discordapp.com/channels/1102309240145707049/1267903870269526140/1328455657833107477 + +12 Jan 2025 + + +# How to add to IPFS + +Show desktop flow + +Share CID + +Pinning + diff --git a/static/css/custom.css b/static/css/custom.css new file mode 100644 index 00000000..6152766d --- /dev/null +++ b/static/css/custom.css @@ -0,0 +1,95 @@ +/* Brand Colors +πŸ”΅ Blue: #144F9B +⚫ Black: #2B2B2B +πŸ”· Alt. Blue: #104C85 - Represent transfer agents and honesty. +🟒 Green: #2E732E - Represents individual investors. +🟠 Orange: #E26848 - Represents issuers. +🟣 Purple #8002AF - Accent in shield logo. +*/ + +h1, h2, h3 { + color: #144F9B; +} + +pre { + background-color: #333; + color: #fff; + border-radius: 8px; + padding: 1em; +} + +.audio-player { + display: flex; + align-items: center; + gap: 10px; + background-color: #2B2B2B; + padding: 10px; + border-radius: 8px; + border: 2px solid #144F9B; + } + .audio-player button { + background-color: #144F9B; + color: #FFFFFF; + border: none; + border-radius: 50%; + width: 40px; + height: 40px; + font-size: 16px; + display: flex; + align-items: center; + justify-content: center; + cursor: pointer; + transition: background-color 0.3s ease; + } + .audio-player button:hover { + background-color: #104C85; + } + .audio-player #seek-bar { + flex: 1; + height: 6px; + appearance: none; + background-color: #E26848; + border-radius: 3px; + outline: none; + transition: background-color 0.3s ease; + } + .audio-player #seek-bar::-webkit-slider-thumb { + appearance: none; + width: 12px; + height: 12px; + background-color: #8002AF; + border: 2px solid #FFFFFF; + border-radius: 50%; + cursor: pointer; + } + .audio-player #seek-bar:hover { + background-color: #E57A61; + } + .audio-player #volume-bar { + width: 100px; + appearance: none; + height: 4px; + background-color: #2E732E; + border-radius: 2px; + outline: none; + } + .audio-player #volume-bar::-webkit-slider-thumb { + appearance: none; + width: 10px; + height: 10px; + background-color: #FFFFFF; + border: 1px solid #2E732E; + border-radius: 50%; + cursor: pointer; + } + .audio-player span { + color: #FFFFFF; + font-family: 'Montserrat', sans-serif; + font-size: 14px; + } + .audio-player button:focus, + .audio-player #seek-bar:focus, + .audio-player #volume-bar:focus { + outline: none; + box-shadow: 0 0 4px #144F9B; + }