2018-04-18 11:15:32 +01:00
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
const meta = [
|
2020-03-16 21:21:17 +03:00
|
|
|
<meta content='freeCodeCamp.org' name='og:title' />,
|
|
|
|
<meta
|
|
|
|
content={
|
|
|
|
'Learn to code. Build projects. Earn certifications.' +
|
|
|
|
'Since 2015, 40,000 graduates have gotten jobs at tech ' +
|
|
|
|
'companies including Google, Apple, Amazon, and Microsoft.'
|
|
|
|
}
|
|
|
|
name='og:description'
|
|
|
|
/>,
|
|
|
|
<meta
|
|
|
|
content='https://cdn.freecodecamp.org/platform/universal/fcc-og-1200-social-green.png'
|
|
|
|
property='og:image'
|
|
|
|
/>,
|
2019-02-16 08:20:53 +00:00
|
|
|
<meta content='summary_large_image' key='twitter:card' name='twitter:card' />,
|
2018-05-30 17:08:21 -05:00
|
|
|
<meta
|
2020-03-16 21:21:17 +03:00
|
|
|
content='https://cdn.freecodecamp.org/platform/universal/fcc-twitter-1120X600-social-green.png'
|
2018-05-30 17:08:21 -05:00
|
|
|
name='twitter:image:src'
|
|
|
|
/>,
|
2020-03-16 21:21:17 +03:00
|
|
|
<meta content='freeCodeCamp.org' name='twitter:title' />,
|
2018-05-30 17:08:21 -05:00
|
|
|
<meta
|
2020-03-16 21:21:17 +03:00
|
|
|
content={
|
|
|
|
'Learn to code. Build projects. Earn certifications.' +
|
|
|
|
'Since 2015, 40,000 graduates have gotten jobs at tech ' +
|
|
|
|
'companies including Google, Apple, Amazon, and Microsoft.'
|
|
|
|
}
|
|
|
|
name='twitter:description'
|
2018-05-30 17:08:21 -05:00
|
|
|
/>
|
2018-04-18 11:15:32 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
export default meta;
|