Skip to content

Commit

Permalink
Add links and developer mailing list
Browse files Browse the repository at this point in the history
  • Loading branch information
emilyliu7321 committed Feb 4, 2024
1 parent 6a9e795 commit 5db68ff
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docs/support/developer-guidelines.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
sidebar_position: 1
sidebar_position: 2
---

# Bluesky Developer Guidelines
Expand Down
14 changes: 14 additions & 0 deletions docs/support/mailing-list.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
sidebar_position: 1
---

# Developer Mailing List

To receive Bluesky developer updates in your inbox, subscribe to the developer mailing list.

<div className="dev-subscription">
<form action="https://api.mailmodo.com/api/v1/at/f/vFF0-joiPh/7d065254-a468-5b57-b7a8-43590ae70d2d" method="post">
<input className="email-input" type="email" name="email" placeholder="Your email" required />
<button className="subscribe-button" type="submit">Subscribe</button>
</form>
</div>
4 changes: 4 additions & 0 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,10 @@ const config = {
label: "Twitter",
href: "https://twitter.com/bluesky",
},
{
label: "Community-run Discord",
href: "https://discord.gg/3srmDsHSZJ",
},
],
},
{
Expand Down
30 changes: 30 additions & 0 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,34 @@

.hiddenTabs {
display: none;
}

.subscribe-button {
padding: 10px 20px;
background-color: #007BFF;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
}

.subscribe-button:hover {
background-color: #1c4ed8;
}

.dev-subscription {
font-size: 90%;
color: #757575;
margin: 0 auto;
}

.email-input {
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
width: 50%;
font-size: 90%;
margin-right: 10px;
transition: all 0.3s ease;
}

0 comments on commit 5db68ff

Please sign in to comment.