Skip to content

Commit ec285ef

Browse files
committed
Update all Twitter and Spectrum mentions
1 parent 0d135de commit ec285ef

File tree

6 files changed

+29
-23
lines changed

6 files changed

+29
-23
lines changed

packages/app/src/app/components/SocialInfo/DiscordLogo.js

Lines changed: 0 additions & 15 deletions
This file was deleted.
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import React from 'react';
2+
import IconBase from 'react-icons/IconBase';
3+
4+
export default () => (
5+
<IconBase
6+
width="1em"
7+
height="1em"
8+
fillRule="evenodd"
9+
clipRule="evenodd"
10+
strokeLinejoin="round"
11+
strokeMiterlimit="1.414"
12+
ariaLabelledby="title"
13+
viewBox="0 0 32 32"
14+
preserveAspectRatio="xMidYMid meet"
15+
>
16+
<title id="title">spectrum</title>
17+
<g>
18+
<path d="M6,14.5c0,0.828 0.672,1.5 1.5,1.5l1.5,0c3.866,0 7,3.134 7,7l0,1.5c0,0.828 0.672,1.5 1.5,1.5l7,0c0.828,0 1.5,-0.672 1.5,-1.5l0,-1.5c0,-9.389 -7.611,-17 -17,-17l-1.5,0c-0.828,0 -1.5,0.672 -1.5,1.5l0,7Z" />
19+
</g>
20+
</IconBase>
21+
);

packages/app/src/app/components/SocialInfo/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ import React from 'react';
22
import TwitterIcon from 'react-icons/lib/fa/twitter';
33
import GithubIcon from 'react-icons/lib/fa/github';
44
import { Icon } from './elements';
5-
import DiscordIcon from './DiscordLogo';
5+
import SpectrumIcon from './SpectrumLogo';
66

77
export default ({ ...props }) => (
88
<div {...props}>
99
<Icon
10-
href="https://twitter.com/codesandboxapp"
10+
href="https://twitter.com/codesandbox"
1111
target="_blank"
1212
rel="noopener noreferrer"
1313
>
@@ -21,11 +21,11 @@ export default ({ ...props }) => (
2121
<GithubIcon />
2222
</Icon>
2323
<Icon
24-
href="https://discord.gg/FGeubVt"
24+
href="https://spectrum.chat/codesandbox"
2525
target="_blank"
2626
rel="noopener noreferrer"
2727
>
28-
<DiscordIcon />
28+
<SpectrumIcon />
2929
</Icon>
3030
</div>
3131
);

packages/app/src/app/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<meta property="og:image:width" content="1200">
1313
<meta property="og:image:height" content="630">
1414
<meta property="twitter:card" content="summary_large_image">
15-
<meta property="twitter:site" content="@codesandboxapp">
15+
<meta property="twitter:site" content="@codesandbox">
1616
<meta property="twitter:title" content="CodeSandbox">
1717
<meta property="twitter:description" content="An online editor tailored for web application development.">
1818
<meta property="twitter:image:src" content="https://codesandbox.io/static/img/banner.png">

packages/homepage/src/components/Footer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ export default () => (
146146
<List>
147147
<li>
148148
<a
149-
href="https://twitter.com/codesandboxapp"
149+
href="https://twitter.com/codesandbox"
150150
target="_blank"
151151
rel="noopener noreferrer"
152152
>

packages/homepage/src/pages/changelog.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@ export default class ChangelogPage extends React.Component {
141141
GitHub repository
142142
</a>{' '}
143143
and the Twitter of{' '}
144-
<a href="https://twitter.com/@codesandboxapp">@codesandboxapp</a>{' '}
145-
and <a href="https://twitter.com/@CompuIves">@CompuIves</a>.
144+
<a href="https://twitter.com/@codesandbox">@codesandbox</a> and{' '}
145+
<a href="https://twitter.com/@CompuIves">@CompuIves</a>.
146146
</Description>
147147
<Changelogs>
148148
{posts.map(({ node: post }) => {

0 commit comments

Comments
 (0)