Skip to content

Commit

Permalink
Merge pull request #559 from sergiozeppo/sergiozeppo/fixXLogo
Browse files Browse the repository at this point in the history
[#558]: Fix old Twitter logo in the Footer
  • Loading branch information
fey authored Oct 7, 2024
2 parents caee6cf + 72bc9c9 commit 57a250c
Show file tree
Hide file tree
Showing 3 changed files with 1,008 additions and 582 deletions.
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"react-autowidth-input": "^1.0.9",
"react-avatar-editor": "^13.0.2",
"react-bootstrap": "^2.8.0",
"react-bootstrap-icons": "^1.10.2",
"react-bootstrap-icons": "^1.11.4",
"react-bootstrap-typeahead": "^6.3.1",
"react-dom": "^18.2.0",
"react-i18next": "^13.0.3",
Expand Down
8 changes: 4 additions & 4 deletions frontend/src/components/Footer/index.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Link } from 'react-router-dom';
import { useTranslation } from 'react-i18next';
import { Container, Row, Col, Nav } from 'react-bootstrap';
import { Youtube, Telegram, Twitter } from 'react-bootstrap-icons';
import { Youtube, Telegram, TwitterX } from 'react-bootstrap-icons';
import { ReactComponent as Vk } from '../../assets/images/icons/vk.svg';
import classes from './index.module.css';

Expand Down Expand Up @@ -185,18 +185,18 @@ function Footer() {
rel="noopener noreferrer nofollow"
target="_blank"
>
<Vk />
<Vk className="bi" />
</a>
</li>
<li className="me-4 mb-2">
<a
aria-label="Twitter"
className={`${classes.footerLink}`}
href="https://twitter.com/HexletHQ"
href="https://x.com/HexletHQ"
rel="noopener noreferrer nofollow"
target="_blank"
>
<Twitter />
<TwitterX />
</a>
</li>
</ul>
Expand Down
Loading

0 comments on commit 57a250c

Please sign in to comment.