Skip to content

It's Bluesky, not BlueSky #941

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pages/community/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ canonical: "/community/overview"

- This website
- [X (previously Twitter)](https://x.com/rescriptlang)
- [BlueSky](https://bsky.app/profile/rescript-lang.org)
- [Bluesky](https://bsky.app/profile/rescript-lang.org)
- [Forum](https://forum.rescript-lang.org)
- [ReScript GitHub Org](https://github.com/rescript-lang/)
- [ReScript YouTube Channel](https://www.youtube.com/@rescriptlang)
- [ReScript Online Meetup on Guild](https://guild.host/rescript-online-meetup)
- [ReScript Online Meetup YouTube Channel](https://www.youtube.com/@ReScriptOnlineMeetup)

News are broadcasted on this site's blog, on BlueSky and X. Some extra, less important news are also posted on the forum's [Announcements category](https://forum.rescript-lang.org/c/announcements/).
News are broadcasted on this site's blog, on Bluesky and X. Some extra, less important news are also posted on the forum's [Announcements category](https://forum.rescript-lang.org/c/announcements/).

**We don't use any other channel to communicate officially**. Any announcement made by users on Reddit, Discord, Medium and others don't necessarily represent our intent.

Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer.res
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ let make = () => {
<Icon.X className="w-6 h-6" />
</a>
<a className=iconLink rel="noopener noreferrer" href=Constants.blueSkyHref>
<Icon.BlueSky className="w-6 h-6" />
<Icon.Bluesky className="w-6 h-6" />
</a>
<a className=iconLink rel="noopener noreferrer" href=Constants.discourseHref>
<Icon.Discourse className="w-6 h-6" />
Expand Down
2 changes: 1 addition & 1 deletion src/components/Icon.res
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ module X = {
</svg>
}

module BlueSky = {
module Bluesky = {
@react.component
let make = (~className: string) =>
<svg className={"fill-current " ++ className} viewBox="0 0 568 501">
Expand Down
2 changes: 1 addition & 1 deletion src/components/Icon.resi
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module X: {
@react.component
let make: (~className: string) => React.element
}
module BlueSky: {
module Bluesky: {
@react.component
let make: (~className: string) => React.element
}
Expand Down
4 changes: 2 additions & 2 deletions src/components/Navigation.res
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ module MobileNav = {
</li>
<li className=base>
<a href=Constants.blueSkyHref rel="noopener noreferrer" className=extLink>
{React.string("BlueSky")}
{React.string("Bluesky")}
</a>
</li>
<li className=base>
Expand Down Expand Up @@ -562,7 +562,7 @@ let make = (~fixed=true, ~isOverlayOpen: bool, ~setOverlayOpen: (bool => bool) =
<Icon.X className="w-6 h-6 opacity-50 hover:opacity-100" />
</a>
<a href=Constants.blueSkyHref rel="noopener noreferrer" className={"mr-5 " ++ link}>
<Icon.BlueSky className="w-6 h-6 opacity-50 hover:opacity-100" />
<Icon.Bluesky className="w-6 h-6 opacity-50 hover:opacity-100" />
</a>
<a href=Constants.discourseHref rel="noopener noreferrer" className=link>
<Icon.Discourse className="w-6 h-6 opacity-50 hover:opacity-100" />
Expand Down