Fix Twitter and GitHub icons in speaker profiles
This commit is contained in:
parent
11607b67f9
commit
ae89ee0356
|
@ -110,10 +110,10 @@ export default function Schedule({
|
|||
<h3>{getSpeakerName(speaker)}</h3>
|
||||
<div className="icons">
|
||||
{speaker.twitter && <a href={'https://twitter.com/'.concat(speaker.twitter)}>
|
||||
<i className="fa fa-twitter" />
|
||||
<i className="fa-brands fa-twitter" />
|
||||
</a>}
|
||||
{speaker.github && <a href={'https://github.com/'.concat(speaker.github)}>
|
||||
<i className="fa fa-github"/>
|
||||
<i className="fa-brands fa-github"/>
|
||||
</a>}
|
||||
</div>
|
||||
<p>{speaker.biography}</p>
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
import { StrictMode } from 'react';
|
||||
import { createRoot } from 'react-dom/client';
|
||||
import App from './App.jsx';
|
||||
|
||||
import '@fortawesome/fontawesome-free/css/all.css';
|
||||
import './index.css';
|
||||
|
||||
createRoot(document.getElementById('root')).render(
|
||||
|
|
Loading…
Reference in New Issue