Skip to content

Commit 048fbe0

Browse files
committedAug 1, 2022
🛠️links added
1 parent 89d2cba commit 048fbe0

File tree

5 files changed

+38
-9
lines changed

5 files changed

+38
-9
lines changed
 

‎components/InitiativeCard.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ const ContainerStyle = {
1111
textAlign: "center",
1212
mx: "auto",
1313
gap: "42px",
14+
textDecoration: "none",
1415
"&:first-of-type": {
1516
mx: 0,
1617
},
@@ -27,9 +28,14 @@ const textStyle = {
2728
textTransform: "uppercase",
2829
};
2930

30-
export default function InitiativeCard({ image, text, iWidth }) {
31+
export default function InitiativeCard({ image, text, iWidth, href }) {
3132
return (
32-
<Box sx={ContainerStyle}>
33+
<Box
34+
sx={ContainerStyle}
35+
component="a"
36+
href={href}
37+
onClick={(e) => !href && e.preventDefault()}
38+
>
3339
<Box sx={{ display: "flex", flex: "1" }}>
3440
<img
3541
src={`/static/${image}.svg`}

‎views/Contributors.js

+15-3
Original file line numberDiff line numberDiff line change
@@ -40,20 +40,32 @@ export default function Contributors() {
4040
<br />
4141
<br />
4242
<br />
43-
<Link underline="hover" sx={{ cursor: "pointer" }}>
43+
<Link
44+
underline="hover"
45+
href="https://interchain.io/"
46+
sx={{ cursor: "pointer" }}
47+
>
4448
Interchain Foundation
4549
</Link>{" "}
4650
grants along with the collaborative development of developers
4751
from{" "}
48-
<Link underline="hover" sx={{ cursor: "pointer" }}>
52+
<Link
53+
underline="hover"
54+
href="https://www.w3.org/"
55+
sx={{ cursor: "pointer" }}
56+
>
4957
World Wide Web Consortium (W3C)
5058
</Link>{" "}
5159
and other development teams worked to further expand the
5260
capabilities of Cosmos SDK
5361
<br />
5462
<br />
5563
<br />
56-
<Link underline="none" sx={{ cursor: "pointer" }}>
64+
<Link
65+
underline="none"
66+
href="https://blog.cosmos.network/progress-report-interchain-nft-metadata-standards-94770dfe3bb1"
67+
sx={{ cursor: "pointer" }}
68+
>
5769
LEARN MORE
5870
</Link>
5971
</Typography>

‎views/Header.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ export default function Header(props) {
4545
const navItems = [
4646
{
4747
name: "About",
48-
link: "",
48+
link: "https://docs.internft.org/",
4949
},
5050
{
5151
name: "Standards",
52-
link: "",
52+
link: "https://github.com/interNFT/nft-rfc",
5353
},
5454
];
5555
const container =

‎views/Initiatives.js

+2
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,13 @@ export default function Initiatives() {
2525
image: "github-logo",
2626
text: "Requests for comments ",
2727
iWidth: "180px",
28+
href: "https://github.com/interNFT",
2829
},
2930
{
3031
image: "reference-logo",
3132
text: "reference implementations",
3233
iWidth: "126px",
34+
href: "https://github.com/cosmos/modules/tree/master/incubator/nft",
3335
},
3436
{
3537
image: "logo-big",

‎views/WorkingGroup.js

+11-2
Original file line numberDiff line numberDiff line change
@@ -59,15 +59,24 @@ export default function WorkingGroup() {
5959
<Box sx={joinStyle}>
6060
<Typography component="p" variant="body2" color="inherit">
6161
Interested in Joining the InterNFT Working Group?{" "}
62-
<Link underline="none" sx={{ cursor: "pointer" }}>
62+
<Link
63+
underline="none"
64+
href="https://t.me/joinchat/V0HEvpFn6TOVTauH"
65+
sx={{ cursor: "pointer" }}
66+
>
6367
Click here!
6468
</Link>
6569
</Typography>
6670
<Typography component="p" variant="body2" color="inherit">
6771
Want to Participate in developing next-generation Interchain
6872
standards and share your use-case requirements?
6973
</Typography>
70-
<Link underline="none" variant="body2" sx={{ cursor: "pointer" }}>
74+
<Link
75+
underline="none"
76+
href="https://github.com/interNFT/nft-rfc/blob/main/nft-rfc-002.md"
77+
variant="body2"
78+
sx={{ cursor: "pointer" }}
79+
>
7180
Click to participate
7281
</Link>
7382
</Box>

0 commit comments

Comments
 (0)
Please sign in to comment.