## 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;
+ }