Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

65 строки
2.0 KiB

  1. export const socialIconsPlatforms = [
  2. {
  3. name: 'Twitter',
  4. onClick: null,
  5. href: 'https://twitter.com/',
  6. },
  7. {
  8. name: 'YouTube',
  9. onClick: null,
  10. href: 'https://www.youtube.com/',
  11. },
  12. {
  13. name: 'Facebook',
  14. onClick: null,
  15. href: 'https://www.facebook.com/',
  16. },
  17. {
  18. name: 'Pinterest',
  19. onClick: null,
  20. href: 'https://www.pinterest.com/',
  21. },
  22. {
  23. name: 'Instagram',
  24. onClick: null,
  25. href: 'https://www.instagram.com/',
  26. },
  27. ]
  28. export const socialIconsBookmark = [
  29. {
  30. name: 'Twitter',
  31. onClick: 'window.open(\'https://twitter.com/intent/tweet?src_ref=\'+encodeURIComponent(location.href)+\'&url=\'+encodeURIComponent(location.href));return false;',
  32. href: 'https://twitter.com/',
  33. },
  34. {
  35. name: 'Facebook',
  36. onClick: 'window.open(\'https://www.facebook.com/sharer.php?u=\'+encodeURIComponent(location.href)+\'&t=\'+encodeURIComponent(document.title));return false;',
  37. href: 'https://www.facebook.com/',
  38. },
  39. {
  40. name: 'XING',
  41. onClick: 'window.open(\'https://www.xing.com/spi/shares/new?url=\'+encodeURIComponent(location.href)+\';title=\'+encodeURIComponent(document.title)+\';provider=IHK24\');return false;',
  42. href: 'https://www.xing.com/',
  43. },
  44. {
  45. name: 'WhatsApp',
  46. onClick: 'window.open(\'whatsapp://send?text=\'+ encodeURIComponent(document.title)+\' \'+encodeURIComponent(location.href));return false;',
  47. href: 'https://www.whatsapp.com/',
  48. },
  49. {
  50. name: 'LinkedIn',
  51. onClick: 'window.open(\'https://www.linkedin.com/sharing/share-offsite/?url=\'+encodeURIComponent(location.href)+\'&title=\'+encodeURIComponent(document.title));return false;',
  52. href: 'https://www.linkedin.com/',
  53. },
  54. {
  55. name: 'Threema',
  56. onClick: 'window.open(\'threema://compose?text=\'+encodeURIComponent(location.href)+\' \'+encodeURIComponent(document.title));return false;',
  57. href: 'https://threema.ch/de/',
  58. },
  59. {
  60. name: 'Telegram',
  61. onClick: 'window.open(\'https://t.me/share/url?url=\'+encodeURIComponent(location.href));return false;',
  62. href: 'https://telegram.org/',
  63. },
  64. ]