Ajout de Discord -> utilisation d'une nouvelle librairie d'icones
This commit is contained in:
parent
ec1aaf85fa
commit
25b22da05e
File diff suppressed because one or more lines are too long
21391
package-lock.json
generated
21391
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -42,5 +42,7 @@
|
|||||||
To begin the development, run `npm start` or `yarn start`.
|
To begin the development, run `npm start` or `yarn start`.
|
||||||
To create a production bundle, use `npm run build` or `yarn build`.
|
To create a production bundle, use `npm run build` or `yarn build`.
|
||||||
-->
|
-->
|
||||||
|
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
|
||||||
|
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -10,7 +10,7 @@ export default class ButtonIcon extends Component {
|
|||||||
return <a class="button" rel="noopener" href={this.props.lien}
|
return <a class="button" rel="noopener" href={this.props.lien}
|
||||||
aria-label="Profil {this.props.icon}">
|
aria-label="Profil {this.props.icon}">
|
||||||
<span class="icon is-large">
|
<span class="icon is-large">
|
||||||
<i class={this.props.icon}></i>
|
<ion-icon name={this.props.icon}></ion-icon>
|
||||||
</span>
|
</span>
|
||||||
</a>;
|
</a>;
|
||||||
}
|
}
|
||||||
|
@ -14,7 +14,7 @@ export default class ContactButton extends Component {
|
|||||||
<a target="_blank" rel="noreferrer noopener" href={data.url} class="hide button is-large is-fullw-mobile"
|
<a target="_blank" rel="noreferrer noopener" href={data.url} class="hide button is-large is-fullw-mobile"
|
||||||
title={`Go to ${data.title}`}>
|
title={`Go to ${data.title}`}>
|
||||||
<span class="icon">
|
<span class="icon">
|
||||||
<i class={"fab " + data.icon}></i>
|
<ion-icon name={data.icon}></ion-icon>
|
||||||
</span>
|
</span>
|
||||||
<span>{data.title}</span>
|
<span>{data.title}</span>
|
||||||
</a>
|
</a>
|
||||||
|
@ -28,15 +28,15 @@ class MainCard extends Component {
|
|||||||
<div class="media-content">
|
<div class="media-content">
|
||||||
<p id="buttonsUnderPhoto" class="buttons are-large ">
|
<p id="buttonsUnderPhoto" class="buttons are-large ">
|
||||||
<ButtonIcon
|
<ButtonIcon
|
||||||
icon="fab icon-github-alt"
|
icon="logo-github"
|
||||||
lien="https://github.com/AdamasFR"/>
|
lien="https://github.com/AdamasFR"/>
|
||||||
|
|
||||||
<ButtonIcon
|
<ButtonIcon
|
||||||
icon="fab icon-linke-square"
|
icon="logo-linkedin"
|
||||||
lien="https://www.linkedin.com/in/anthonyyvondumas/"/>
|
lien="https://www.linkedin.com/in/anthonyyvondumas/"/>
|
||||||
|
|
||||||
<ButtonIcon
|
<ButtonIcon
|
||||||
icon="fab icon-twit"
|
icon="logo-twitter"
|
||||||
lien="https://www.twitter.com/adamas_fr"/>
|
lien="https://www.twitter.com/adamas_fr"/>
|
||||||
</p>
|
</p>
|
||||||
<p id="boutonCV" class="buttons are-large">
|
<p id="boutonCV" class="buttons are-large">
|
||||||
|
@ -90,17 +90,22 @@
|
|||||||
{
|
{
|
||||||
"title" : "Email",
|
"title" : "Email",
|
||||||
"url" : "mailto:anthony@dumas.cc",
|
"url" : "mailto:anthony@dumas.cc",
|
||||||
"icon" : "icon-envelope-open"
|
"icon" : "mail-unread"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"title" : "LinkedIn",
|
"title" : "LinkedIn",
|
||||||
"url" : "https://www.linkedin.com/in/anthonyyvondumas/",
|
"url" : "https://www.linkedin.com/in/anthonyyvondumas/",
|
||||||
"icon" : "icon-linke-square"
|
"icon" : "logo-linkedin"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"title" : "Telegram",
|
"title" : "Discord",
|
||||||
"url" : "https://t.me/adamas_FR",
|
"url" : "https://dsc.bio/adamas",
|
||||||
"icon" : "icon-teleg"
|
"icon" : "call"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"title" : "Twitter",
|
||||||
|
"url" : "https://twitter.com/adamas_fr",
|
||||||
|
"icon" : "logo-twitter"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -91,22 +91,22 @@
|
|||||||
{
|
{
|
||||||
"title" : "Courriel",
|
"title" : "Courriel",
|
||||||
"url" : "mailto:anthony@dumas.cc",
|
"url" : "mailto:anthony@dumas.cc",
|
||||||
"icon" : "icon-envelope-open"
|
"icon" : "mail-unread"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"title" : "LinkedIn",
|
"title" : "LinkedIn",
|
||||||
"url" : "https://www.linkedin.com/in/anthonyyvondumas/",
|
"url" : "https://www.linkedin.com/in/anthonyyvondumas/",
|
||||||
"icon" : "icon-linke-square"
|
"icon" : "logo-linkedin"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"title" : "Telegram",
|
"title" : "Discord",
|
||||||
"url" : "https://t.me/adamas_FR",
|
"url" : "https://dsc.bio/adamas",
|
||||||
"icon" : "icon-teleg"
|
"icon" : "call"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"title" : "Twitter",
|
"title" : "Twitter",
|
||||||
"url" : "https://twitter.com/adamas_fr",
|
"url" : "https://twitter.com/adamas_fr",
|
||||||
"icon" : "icon-twit"
|
"icon" : "logo-twitter"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user