Skip to content

Commit

Permalink
refactor: Update Twitter URL to new handle (#223)
Browse files Browse the repository at this point in the history
* refactor: Update Twitter URL to new handle

Now that we've switched to x.com/base, the old URL will 404

* Leave references to Twitter vs X as-is
  • Loading branch information
wbnns authored Dec 22, 2023
1 parent 26680e7 commit 66f95b2
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Base is a secure, low-cost, developer-friendly Ethereum L2 built to bring the ne
[![Blog](https://img.shields.io/badge/blog-up-green)](https://base.mirror.xyz/)
[![Docs](https://img.shields.io/badge/docs-up-green)](https://docs.base.org/)
[![Discord](https://img.shields.io/discord/1067165013397213286?label=discord)](https://base.org/discord)
[![Twitter BuildOnBase](https://img.shields.io/twitter/follow/BuildOnBase?style=social)](https://twitter.com/BuildOnBase)
[![Twitter Base](https://img.shields.io/twitter/follow/Base?style=social)](https://twitter.com/Base)

<!-- Badge row 3 - detailed status -->

Expand Down
2 changes: 1 addition & 1 deletion apps/base-docs/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const config = {
items: [
{
label: 'Twitter',
href: 'https://www.twitter.com/BuildOnBase',
href: 'https://www.twitter.com/base',
},
{
label: 'Discord',
Expand Down
2 changes: 1 addition & 1 deletion apps/bridge/.env.goerli.example
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ L2_CCTP_DOMAIN=6
MARKETING_URL=https://base.org
DOCS_URL=https://docs.base.org
BLOG_URL=https://base.mirror.xyz
TWITTER_URL=https://twitter.com/buildonbase
TWITTER_URL=https://twitter.com/base
GITHUB_URL=https://github.com/base-org
MAINNET_LAUNCH_BLOG_POST_URL=https://base.mirror.xyz
MAINNET_LAUNCH_FLAG=false
Expand Down
2 changes: 1 addition & 1 deletion apps/bridge/.env.mainnet.example
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ L2_OUTPUT_ORACLE_PROXY_ADDRESS=0x56315b90c40730925ec5485cf004d835058518A0
MARKETING_URL=https://base.org
DOCS_URL=https://docs.base.org
BLOG_URL=https://base.mirror.xyz
TWITTER_URL=https://twitter.com/buildonbase
TWITTER_URL=https://twitter.com/base
GITHUB_URL=https://github.com/base-org
MAINNET_LAUNCH_BLOG_POST_URL=https://base.mirror.xyz
MAINNET_LAUNCH_FLAG=false
Expand Down
2 changes: 1 addition & 1 deletion apps/bridge/.env.sepolia.example
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ L2_OUTPUT_ORACLE_PROXY_ADDRESS=0x84457ca9D0163FbC4bbfe4Dfbb20ba46e48DF254
MARKETING_URL=https://base.org
DOCS_URL=https://docs.base.org
BLOG_URL=https://base.mirror.xyz
TWITTER_URL=https://twitter.com/buildonbase
TWITTER_URL=https://twitter.com/base
GITHUB_URL=https://github.com/base-org
MAINNET_LAUNCH_BLOG_POST_URL=https://base.mirror.xyz
MAINNET_LAUNCH_FLAG=false
Expand Down
2 changes: 1 addition & 1 deletion apps/web/.env.local.example
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ BRIDGE_URL=https://bridge.base.org
ALCHEMY_API_KEY=
ALCHEMY_HTTPS=
BLOG_URL=https://base.mirror.xyz
TWITTER_URL=https://twitter.com/buildonbase
TWITTER_URL=https://twitter.com/base
GITHUB_URL=https://github.com/base-org
MAINNET_LAUNCH_BLOG_POST_URL=https://base.mirror.xyz
MAINNET_LAUNCH_FLAG=false
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/GetConnected/GetConnected.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export function GetConnected() {
</a>
</div>
<div className="rounded-full border border-white p-5">
<a href="https://twitter.com/buildonbase" title="Join us on Twitter">
<a href="https://twitter.com/base" title="Join us on Twitter">
<Icon name="twitter" width="48" height="48" />
</a>
</div>
Expand Down
7 changes: 5 additions & 2 deletions apps/web/src/components/Layout/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ export function Footer() {
</div>
<div className="flex flex-col">
<p className="text-white">
<a href="https://docs.google.com/forms/d/e/1FAIpQLSdvX-a6LqOIR7Uk5cDPGUjUkpSCetvTor25M1JmW9eqgubS5Q/viewform?usp=sf_link" className="underline">
<a
href="https://docs.google.com/forms/d/e/1FAIpQLSdvX-a6LqOIR7Uk5cDPGUjUkpSCetvTor25M1JmW9eqgubS5Q/viewform?usp=sf_link"
className="underline"
>
Build on Base
</a>
</p>
Expand Down Expand Up @@ -80,7 +83,7 @@ export function Footer() {
<Icon name="discord" width="24" height="20" />
</Link>
<a
href="https://twitter.com/buildonbase"
href="https://twitter.com/base"
target="_blank"
rel="noreferrer noopener"
title="Join us on Twitter"
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/Layout/Nav/DesktopNav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ function DesktopNav({ color }: DesktopNavProps) {
<Link href="/discord" title="Join us on Discord">
<Icon name="discord" width="24" height="20" color={color} />
</Link>
<a href="https://twitter.com/buildonbase" title="Join us on Twitter">
<a href="https://twitter.com/base" title="Join us on Twitter">
<Icon name="twitter" width="24" height="20" color={color} />
</a>
<a href="https://github.com/base-org" title="Join us on Github">
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/Layout/Nav/MobileMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ function MobileMenu({ color }: MobileMenuProps) {
<Link href="/discord" title="Join us on Discord">
<Icon name="discord" width="48" />
</Link>
<a href="https://twitter.com/buildonbase" title="Join us on Twitter">
<a href="https://twitter.com/base" title="Join us on Twitter">
<Icon name="twitter" width="48" />
</a>
<a
Expand Down

0 comments on commit 66f95b2

Please sign in to comment.