forked from sendgrid/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsocialLinks.js
More file actions
29 lines (28 loc) · 979 Bytes
/
Copy pathsocialLinks.js
File metadata and controls
29 lines (28 loc) · 979 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
const SOCIAL_LINKS = [
{
TEXTNODE: 'Twitter',
URL: 'https://twitter.com/sendgrid/',
IMG: 'https://sendgrid.com/wp-content/themes/sgdotcom/assets/images/footer/icon-twitter-circle.svg',
},
{
TEXTNODE: 'LinkedIn',
URL: 'https://www.linkedin.com/company/sendgrid/',
IMG: 'https://sendgrid.com/wp-content/themes/sgdotcom/assets/images/footer/icon-linkedin-circle.svg',
},
{
TEXTNODE: 'Facebook',
URL: 'https://www.facebook.com/SendGrid/',
IMG: 'https://sendgrid.com/wp-content/themes/sgdotcom/assets/images/footer/icon-facebook-circle.svg',
},
{
TEXTNODE: 'GitHub',
URL: 'https://github.com/sendgrid/',
IMG: 'https://sendgrid.com/wp-content/themes/sgdotcom/assets/images/footer/icon-github-circle.svg',
},
{
TEXTNODE: 'RSS Feed',
URL: 'https://sendgrid.com/blog/feed/',
IMG: 'https://sendgrid.com/wp-content/themes/sgdotcom/assets/images/footer/icon-rss-circle.svg',
},
];
export default SOCIAL_LINKS;