Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix discord issue #2870

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _data/pages/online-communities.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ blocks:
- type: link_list_item
link:
custom_title: Discord
custom_external_link: https://starknet.io/discord
custom_external_link: https://discord.com/invite/starknet-community
subLabel:
label: "Join the conversation on Discord "
- type: link_list_item
Expand Down
2 changes: 1 addition & 1 deletion _data/settings/main-menu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ items:
custom_external_link: https://www.youtube.com/@starkware_ltd
- custom_title: Discord
custom_icon: SiDiscord
custom_external_link: https://starknet.io/discord
custom_external_link: https://discord.com/invite/starknet-community
- custom_title: GitHub
custom_icon: SiGithub
custom_external_link: https://github.com/keep-starknet-strange/awesome-starknet
Expand Down
22 changes: 11 additions & 11 deletions workspaces/website/src/components/Footer/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ import { StarknetLogo } from "../Logo/StarknetLogo";
type RootProps = {
children: React.ReactNode;
} & ChakraBoxProps & {
seo: {
footerText: string;
footerDisclaimers: {
text: string;
link: string;
}[];
};
seo: {
footerText: string;
footerDisclaimers: {
text: string;
link: string;
}[];
};
};

const Root = ({ children, seo, ...rest }: RootProps) => {
return (
Expand Down Expand Up @@ -67,7 +67,7 @@ const Root = ({ children, seo, ...rest }: RootProps) => {
pt="40px"
pb={{ base: "40px", md: "0px" }}
px="30px"
gap={{ base: "16px", md: "24px"}}
gap={{ base: "16px", md: "24px" }}
display={{ base: "flex", xl: "none" }}
direction={{ base: "column", md: "row" }}
>
Expand Down Expand Up @@ -109,7 +109,7 @@ const Root = ({ children, seo, ...rest }: RootProps) => {
maxW="1200"
width="100%"
px="30px"
justifyContent={{ md: "space-between"}}
justifyContent={{ md: "space-between" }}
>
<Stack
gap={{ base: "24px", md: "0px" }}
Expand All @@ -121,7 +121,7 @@ const Root = ({ children, seo, ...rest }: RootProps) => {
<Box>
<StarknetLogo height="32" />
</Box>
<Divider orientation="vertical" display={{ base: "none", md: "block" }}/>
<Divider orientation="vertical" display={{ base: "none", md: "block" }} />
<Text
fontSize="sm"
color={useColorModeValue(
Expand Down Expand Up @@ -158,7 +158,7 @@ const Root = ({ children, seo, ...rest }: RootProps) => {
>
<IconButton
as="a"
href="https://starknet.io/discord"
href="https://discord.com/invite/starknet-community"
aria-label="Discord"
icon={<SiDiscord fontSize="1.25rem" />}
size="small"
Expand Down