Skip to content

Commit

Permalink
added brave link
Browse files Browse the repository at this point in the history
  • Loading branch information
shawnkw committed Jun 18, 2024
1 parent 4579c09 commit 16ddbef
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
14 changes: 11 additions & 3 deletions src/components/About/Toolstack.js
Original file line number Diff line number Diff line change
@@ -1,20 +1,28 @@
import React from "react";
import { Col, Row } from "react-bootstrap";
import { SiGithub, SiGooglechrome } from "react-icons/si";
import { SiGithub, SiGooglechrome, SiBrave } from "react-icons/si";

function Toolstack() {
let date = new Date();
let timestamp = '?v=' + new Date().getTime();
let year = date.getFullYear();
return (
<Row style={{ justifyContent: "center", paddingBottom: "50px" }}>
<Col xs={4} md={2} className="tech-icons">
<a href="https://github.com/kasware-wallet/extension" style={{ color: "white" }} target="_blank" rel="noopener noreferrer">
<a href={"https://github.com/kasware-wallet/extension"+timestamp} style={{ color: "white" }} target="_blank" rel="noopener noreferrer">
<SiGithub />
</a>
</Col>
<Col xs={4} md={2} className="tech-icons">
<a href="https://chromewebstore.google.com/detail/kasware-wallet/hklhheigdmpoolooomdihmhlpjjdbklf" style={{ color: "white" }} target="_blank" rel="noopener noreferrer">
<a href={"https://chromewebstore.google.com/detail/kasware-wallet/hklhheigdmpoolooomdihmhlpjjdbklf"+timestamp} style={{ color: "white" }} target="_blank" rel="noopener noreferrer">
<SiGooglechrome />
</a>
</Col>
<Col xs={4} md={2} className="tech-icons">
<a href={"https://chromewebstore.google.com/detail/kasware-wallet/hklhheigdmpoolooomdihmhlpjjdbklf"+timestamp} style={{ color: "white" }} target="_blank" rel="noopener noreferrer">
<SiBrave />
</a>
</Col>
</Row>
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function Footer() {
</li>
<li className="social-icons">
<a
href="https://github.com/kasware-wallet/extension"
href={"https://github.com/kasware-wallet/extension"+timestamp}
style={{ color: "white" }}
target="_blank"
rel="noopener noreferrer"
Expand Down

0 comments on commit 16ddbef

Please sign in to comment.