Skip to content

Commit

Permalink
fix: 🐛 github organization URL
Browse files Browse the repository at this point in the history
  • Loading branch information
heldrida committed Jun 6, 2024
1 parent d54de02 commit 00597fb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
6 changes: 5 additions & 1 deletion src/components/Footer/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,16 @@ const {
careersUrl,
supportExternalUrl,
reportAbuseUrl,
fleekNetworkWebsiteUrl,
discordFleekCommunityUrl,
statusURl,
} = settings.site.resources;

const {
fleekPlatformOrgUrl,
} = settings.github;

export default {
fleekPlatformOrgUrl,
developers: [
{
text: 'Status',
Expand Down
4 changes: 2 additions & 2 deletions src/components/Footer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Link, { Target } from '@components/Link';
import config from './config';
import { FaXTwitter } from 'react-icons/fa6';

const { product, developers, legal, resources } = config;
const { product, developers, legal, resources, fleekPlatformOrgUrl } = config;

const Footer = () => {
return (
Expand All @@ -30,7 +30,7 @@ const Footer = () => {
</Text>
<div className="mb-16 flex gap-16">
<a
href="https://github.com/fleekxyz"
href={fleekPlatformOrgUrl}
rel="noopener noreferrer"
target="_blank"
>
Expand Down
1 change: 1 addition & 0 deletions src/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,7 @@
]
},
"github": {
"fleekPlatformOrgUrl": "https://github.com/fleek-platform",
"editUrl": "https://github.com/fleek-platform/website/edit",
"xyzWebsiteRepositoryUrl": "https://github.com/fleek-platform/website"
},
Expand Down

0 comments on commit 00597fb

Please sign in to comment.