Skip to content

Commit 10b4d28

Browse files
authored
fix: akashnet twitter handle (#2125)
1 parent cc8d5a6 commit 10b4d28

9 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ For an indept understanding of the code [![Ask DeepWiki](https://deepwiki.com/ba
1414
[![version](https://img.shields.io/github/stars/akash-network/console)](https://github.com/akash-network/console/stargazers)
1515
[![forks](https://img.shields.io/github/forks/akash-network/console)](https://github.com/akash-network/console/forks)
1616
[![license](https://img.shields.io/github/license/akash-network/console)](https://github.com/akash-network/console/blob/main/LICENSE)
17-
[![X (formerly Twitter) Follow](https://img.shields.io/twitter/follow/akashnet_)](https://x.com/akashnet_)
17+
[![X (formerly Twitter) Follow](https://img.shields.io/twitter/follow/akashnet)](https://x.com/akashnet)
1818
[![Discord](https://img.shields.io/badge/discord-join-7289DA.svg?logo=discord&longCache=true&style=flat)](https://discord.gg/akash)
1919

2020
</div>

apps/deploy-web/src/components/layout/PageHead.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ export const PageHead: React.FunctionComponent<{ pageSeo?: NextSeoProps }> = ({
3232
]
3333
}}
3434
twitter={{
35-
handle: "@akashnet_",
36-
site: "@akashnet_",
35+
handle: "@akashnet",
36+
site: "@akashnet",
3737
cardType: "summary_large_image"
3838
}}
3939
/>

apps/deploy-web/src/components/layout/Sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ export const Sidebar: React.FunctionComponent<Props> = ({ isMobileOpen, handleDr
148148
{
149149
title: "Akash on X",
150150
icon: props => <TwitterX {...props} />,
151-
url: "https://twitter.com/akashnet_",
151+
url: "https://twitter.com/akashnet",
152152
target: "_blank",
153153
rel: "noreferrer noopener"
154154
},

apps/deploy-web/src/pages/contact.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const ContactPage: React.FunctionComponent = () => {
4040
</li>
4141
<li>
4242
<a
43-
href="https://twitter.com/akashnet_"
43+
href="https://twitter.com/akashnet"
4444
target="_blank"
4545
className="block px-4 py-2 text-current transition-all duration-300 hover:text-primary [&>path]:fill-muted-foreground/20 hover:[&>path]:fill-primary"
4646
>

apps/provider-console/src/components/layout/Footer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export const Footer: React.FC<IFooterProps> = () => {
3939
</li>
4040
<li>
4141
<a
42-
href="https://twitter.com/akashnet_"
42+
href="https://twitter.com/akashnet"
4343
target="_blank"
4444
rel="noreferrer"
4545
className="block px-4 py-2 text-current transition-all duration-300 hover:text-primary [&>path]:fill-muted-foreground/20 hover:[&>path]:fill-primary"

apps/provider-console/src/components/layout/Sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ export const Sidebar: React.FC<Props> = ({ isMobileOpen, handleDrawerToggle, isN
224224
<Link
225225
target="_blank"
226226
rel="noreferrer"
227-
href="https://twitter.com/akashnet_"
227+
href="https://twitter.com/akashnet"
228228
className={cn(buttonVariants({ variant: "text", size: "icon" }), "h-8 w-8")}
229229
>
230230
<TwitterX className="h-5 w-5" />

apps/stats-web/src/app/layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export const metadata: Metadata = {
3535
]
3636
},
3737
twitter: {
38-
site: "@akashnet_",
38+
site: "@akashnet",
3939
card: "summary_large_image"
4040
},
4141
icons: [

apps/stats-web/src/components/layout/MobileNav.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export function MobileNav() {
7070
</div>
7171

7272
<div className="flex items-center justify-center pt-4">
73-
<Link target="_blank" rel="noreferrer" href="https://twitter.com/akashnet_" className="text-foreground">
73+
<Link target="_blank" rel="noreferrer" href="https://twitter.com/akashnet" className="text-foreground">
7474
<Button variant="ghost" size="icon">
7575
<TwitterX width="1.2rem" height="1.2rem" />
7676
<span className="sr-only">Twitter</span>

apps/stats-web/src/components/layout/Nav.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export const Nav = () => {
4949
</div>
5050

5151
<nav className="hidden items-center md:flex">
52-
<Link target="_blank" rel="noreferrer" href="https://twitter.com/akashnet_" className="text-foreground">
52+
<Link target="_blank" rel="noreferrer" href="https://twitter.com/akashnet" className="text-foreground">
5353
<Button variant="ghost" size="icon">
5454
<TwitterX width="1.2rem" height="1.2rem" />
5555
<span className="sr-only">Twitter</span>

0 commit comments

Comments
 (0)