diff --git a/src/components/Blog.js b/src/components/Blog.js new file mode 100644 index 0000000..edd582d --- /dev/null +++ b/src/components/Blog.js @@ -0,0 +1,60 @@ +import React from 'react' + +export default function About(props) { + + // const [myStyle, setMyStyle] = useState({ + // color: 'black', + // backgroundColor: 'white' + // }) + let myStyle = { + color: props.mode ==='dark'?'white':'#042743', + backgroundColor: props.mode ==='dark'?'rgb(36 74 104)':'white', + } + + return ( +
+

About Us

+
+
+

+ +

+
+
+ Textutils gives you a way to analyze your text quickly and efficiently. Be it word count, character count or + +
+
+
+
+

+ +

+
+
+ TextUtils is a free character counter tool that provides instant character count & word count statistics for a given text. TextUtils reports the number of words and characters. Thus it is suitable for writing text with word/ character limit. +
+
+
+
+

+ +

+
+
+ This word counter software works in any web browsers such as Chrome, Firefox, Internet Explorer, Safari, Opera. It suits to count characters in facebook, blog, books, excel document, pdf document, essays, etc. + +
+
+
+
+ +
+ ) +}