diff --git a/src/assets/icons/logo.png b/src/assets/icons/logo.png new file mode 100644 index 0000000..248fa7c Binary files /dev/null and b/src/assets/icons/logo.png differ diff --git a/src/components/App.js b/src/components/App.js index 317afde..105e6ba 100644 --- a/src/components/App.js +++ b/src/components/App.js @@ -1,12 +1,13 @@ import React from 'react'; import Editor from './Editor'; - +import Info from './Info' class App extends React.Component { render() { return (
+
); } diff --git a/src/components/Info.js b/src/components/Info.js new file mode 100644 index 0000000..dc82845 --- /dev/null +++ b/src/components/Info.js @@ -0,0 +1,59 @@ +import React from 'react'; +import logo from '../assets/icons/logo.png' + +const Info = () => { + + + const fbMeta = ` ` + const twitterMeta = ` +` + + return ( +
+ + + +
+
+

How to use it with meta tags?

+

Add this code in the head tag of your site.

+ +
+

{fbMeta}

+

{twitterMeta}

+
+ + Don't forget to replace content with your image url + +
+ + + + +
+

Can I upload a custom icon or my own Image?

+

Yes. Search custom in the icon option and select it. Now you can upload a custom logo or your own image.

+

Make sure to upload an icon/image with 1:1 ratio

+
+ + + + +
+ + +
+
+ logo +

coverview

+
+ +

Creating cover images for your blogs is now super easy

+ ⭐ Star on Github +
+ +
+ ); +} + +export default Info; \ No newline at end of file