Skip to content

Commit 21a02af

Browse files
committed
Updated bluesky
1 parent 050d422 commit 21a02af

File tree

4 files changed

+35
-20
lines changed

4 files changed

+35
-20
lines changed

Diff for: constants/extension.ts

+13-7
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,22 @@ export const Extension = {
99
sponsorLink: "https://github.com/sponsors/estruyf",
1010
sponsorOpenCollective: "https://opencollective.com/frontmatter",
1111
sponsorCoffee: "https://www.buymeacoffee.com/zMeFRy9",
12-
extensionLink: "https://marketplace.visualstudio.com/items?itemName=eliostruyf.vscode-front-matter",
13-
extensionBetaLink: "https://marketplace.visualstudio.com/items?itemName=eliostruyf.vscode-front-matter-beta",
14-
reviewLink: "https://marketplace.visualstudio.com/items?itemName=eliostruyf.vscode-front-matter&ssr=false#review-details",
12+
extensionLink:
13+
"https://marketplace.visualstudio.com/items?itemName=eliostruyf.vscode-front-matter",
14+
extensionBetaLink:
15+
"https://marketplace.visualstudio.com/items?itemName=eliostruyf.vscode-front-matter-beta",
16+
reviewLink:
17+
"https://marketplace.visualstudio.com/items?itemName=eliostruyf.vscode-front-matter&ssr=false#review-details",
1518
installLink: "vscode:extension/eliostruyf.vscode-front-matter",
1619
installBetaLink: "vscode:extension/eliostruyf.vscode-front-matter-beta",
17-
showcaseLink: "https://github.com/estruyf/vscode-front-matter/issues/new?assignees=&labels=&template=showcase.md&title=Showcase%3A+",
18-
featureLink: "https://github.com/estruyf/vscode-front-matter/issues/new?assignees=&labels=&template=feature_request.md&title=Enhancement%3A+",
20+
showcaseLink:
21+
"https://github.com/estruyf/vscode-front-matter/issues/new?assignees=&labels=&template=showcase.md&title=Showcase%3A+",
22+
featureLink:
23+
"https://github.com/estruyf/vscode-front-matter/issues/new?assignees=&labels=&template=feature_request.md&title=Enhancement%3A+",
1924
stars: "https://github.com/estruyf/vscode-front-matter/stargazers",
2025
mainSite: "https://frontmatter.codes",
2126
betaSite: "https://beta.frontmatter.codes",
2227
twitter: "https://twitter.com/frontmattercms",
23-
discord: "https://discord.gg/JBVtNMsJFB"
24-
}
28+
bluesky: "https://bsky.app/profile/did:plc:5bb7t7bwr53rrku6vr7osqy2",
29+
discord: "https://discord.gg/JBVtNMsJFB",
30+
};

Diff for: constants/navigation.tsx

+14-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { HeartIcon, XMarkIcon } from "@heroicons/react/24/outline";
33
import { useState } from "react";
44
import { Modal } from "../components/modal/Modal";
55
import { Extension } from "./extension";
6-
import { FaXTwitter } from "react-icons/fa6";
6+
import { FaBluesky } from "react-icons/fa6";
77
import { SiDiscord, SiVisualstudiocode } from "react-icons/si";
88

99
export const navigation = {
@@ -126,13 +126,22 @@ export const navigation = {
126126
<SiVisualstudiocode className={`${className} group-hover:fill-current`} {...rest} />
127127
)
128128
},
129+
// {
130+
// name: 'Twitter',
131+
// title: 'Follow us on Twitter',
132+
// href: Extension.twitter,
133+
// blank: true,
134+
// icon: ({ className, ...rest }: any) => (
135+
// <FaXTwitter className={`${className} group-hover:fill-current`} {...rest} />
136+
// )
137+
// },
129138
{
130-
name: 'Twitter',
131-
title: 'Follow us on Twitter',
132-
href: Extension.twitter,
139+
name: 'Bluesky',
140+
title: 'Follow us on Bluesky',
141+
href: Extension.bluesky,
133142
blank: true,
134143
icon: ({ className, ...rest }: any) => (
135-
<FaXTwitter className={`${className} group-hover:fill-current`} {...rest} />
144+
<FaBluesky className={`${className} group-hover:fill-current`} {...rest} />
136145
)
137146
},
138147
{

Diff for: package-lock.json

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"react": "^18.2.0",
3737
"react-dom": "^18.2.0",
3838
"react-i18next": "^11.11.4",
39-
"react-icons": "^5.2.1",
39+
"react-icons": "^5.3.0",
4040
"react-markdown": "^7.0.1",
4141
"recharts": "^2.4.3",
4242
"rehype-raw": "^7.0.0",

0 commit comments

Comments
 (0)