├── .gitignore ├── Backend ├── Routes │ ├── post.js │ ├── profile.js │ └── user.js ├── angular │ ├── 3rdpartylicenses.txt │ ├── assets │ │ └── asset-1.png │ ├── favicon.ico │ ├── index.html │ ├── main-es2015.a69d00e6f85c52bcd2eb.js │ ├── main-es5.a69d00e6f85c52bcd2eb.js │ ├── polyfills-es2015.1f913f16a2d346cc8bdc.js │ ├── polyfills-es5.f1044614286c4864d80f.js │ ├── runtime-es2015.0811dcefd377500b5b1a.js │ ├── runtime-es5.0811dcefd377500b5b1a.js │ ├── scripts.e1e4065a193e36f8760c.js │ └── styles.bf0be841f47a3f80a5b0.css ├── app.js ├── db │ └── db.js ├── debug.log ├── images │ ├── aaa@gmail.com-1601974809989.jpg │ ├── mk.png-1600584079501.png │ ├── mk.png-1600584158841.png │ ├── mk.png-1600584664881.png │ ├── mk.png-1600584723450.png │ ├── mk.png-1600584763907.png │ ├── mk.png-1600585046513.png │ ├── mk05-1600586633316.jpg │ ├── mk05-1600675670507.jpg │ ├── mk0555-1602169841812.png │ ├── mk123-1600846566602.jpg │ ├── professional-front-end-ui-developer-1601997168376.jpg │ ├── rohan03-1602137429890.jpg │ ├── rohan03-1602139155813.jpg │ ├── rohan03-1602139451184.jpg │ ├── rohan03-1602140136758.jpg │ ├── rohan03-1602140498131.jpg │ ├── rohan03-1602483897544.jpg │ ├── ths-is-first-title-1602046543527.jpg │ ├── ths-is-first-title-1602052884834.jpg │ ├── ths-is-first-title-1602052950478.jpg │ ├── title-1-1600746770031.png │ ├── title-2-1600752511423.png │ ├── title-3-1600839418515.png │ ├── title-33-1600839550483.png │ ├── title-5-1602052981299.jpg │ ├── ttitle3-1601996216278.jpg │ ├── ttitle3-1601996218151.jpg │ └── wedding-bellsq00-1600585936835.png ├── middlewares │ ├── check-auth.js │ └── header.js ├── models │ ├── post.js │ ├── profile.js │ └── user.js ├── package-lock.json └── package.json ├── README.md ├── debug.log ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── App.css ├── App.js ├── App.test.js ├── Components │ ├── Auth │ │ ├── Auth.css │ │ └── Auth.js │ ├── Posts │ │ ├── CreatePost │ │ │ ├── CreatePost.css │ │ │ └── CreatePost.js │ │ ├── Mypost │ │ │ └── Mypost.js │ │ ├── Posts.js │ │ ├── ShowPost │ │ │ ├── ShowPost.css │ │ │ └── ShowPost.js │ │ └── SinglePost │ │ │ ├── SinglePost.css │ │ │ └── SinglePost.js │ └── Users │ │ ├── CreateProfile │ │ ├── CreateProfile.css │ │ └── CreateProfile.js │ │ ├── Profile │ │ ├── Profile.css │ │ └── Profile.js │ │ └── ShowUsers │ │ ├── ShowUser.css │ │ └── ShowUser.js ├── Containers │ ├── ImageUpload │ │ ├── ImageUpload.css │ │ └── ImageUpload.js │ ├── Menubar │ │ ├── Backdrop │ │ │ ├── Backdrop.css │ │ │ └── Backdrop.js │ │ ├── MainNavigation │ │ │ ├── MainNavigation.css │ │ │ └── MainNavigation.js │ │ ├── Mainheader │ │ │ ├── MainHeader.css │ │ │ └── Mainheader.js │ │ ├── Navlinks │ │ │ ├── NavLinks.css │ │ │ └── NavLinks.js │ │ └── SideDrawer │ │ │ ├── SideDrawer.css │ │ │ └── SideDrawer.js │ ├── Modal │ │ └── Modal.js │ ├── SocialMedia.js │ │ ├── SocialMedia.css │ │ ├── SocialMedia.js │ │ └── SocialMediaHorizontal │ │ │ └── SocialMediaHorizontal.js │ ├── Spinner │ │ ├── Spinner.css │ │ └── Spinner.js │ └── footer │ │ ├── footer.css │ │ └── footer.js ├── assets │ ├── asset-1.png │ └── avtar.jpg ├── context │ └── auth-context.js ├── index.css ├── index.js ├── logo.svg ├── serviceWorker.js ├── setupTests.js └── utils │ ├── ToText.js │ ├── emailRegex.js │ └── validateform.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/.gitignore -------------------------------------------------------------------------------- /Backend/Routes/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/Routes/post.js -------------------------------------------------------------------------------- /Backend/Routes/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/Routes/profile.js -------------------------------------------------------------------------------- /Backend/Routes/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/Routes/user.js -------------------------------------------------------------------------------- /Backend/angular/3rdpartylicenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/angular/3rdpartylicenses.txt -------------------------------------------------------------------------------- /Backend/angular/assets/asset-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/angular/assets/asset-1.png -------------------------------------------------------------------------------- /Backend/angular/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/angular/favicon.ico -------------------------------------------------------------------------------- /Backend/angular/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/angular/index.html -------------------------------------------------------------------------------- /Backend/angular/main-es2015.a69d00e6f85c52bcd2eb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/angular/main-es2015.a69d00e6f85c52bcd2eb.js -------------------------------------------------------------------------------- /Backend/angular/main-es5.a69d00e6f85c52bcd2eb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/angular/main-es5.a69d00e6f85c52bcd2eb.js -------------------------------------------------------------------------------- /Backend/angular/polyfills-es2015.1f913f16a2d346cc8bdc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/angular/polyfills-es2015.1f913f16a2d346cc8bdc.js -------------------------------------------------------------------------------- /Backend/angular/polyfills-es5.f1044614286c4864d80f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/angular/polyfills-es5.f1044614286c4864d80f.js -------------------------------------------------------------------------------- /Backend/angular/runtime-es2015.0811dcefd377500b5b1a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/angular/runtime-es2015.0811dcefd377500b5b1a.js -------------------------------------------------------------------------------- /Backend/angular/runtime-es5.0811dcefd377500b5b1a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/angular/runtime-es5.0811dcefd377500b5b1a.js -------------------------------------------------------------------------------- /Backend/angular/scripts.e1e4065a193e36f8760c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/angular/scripts.e1e4065a193e36f8760c.js -------------------------------------------------------------------------------- /Backend/angular/styles.bf0be841f47a3f80a5b0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/angular/styles.bf0be841f47a3f80a5b0.css -------------------------------------------------------------------------------- /Backend/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/app.js -------------------------------------------------------------------------------- /Backend/db/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/db/db.js -------------------------------------------------------------------------------- /Backend/debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/debug.log -------------------------------------------------------------------------------- /Backend/images/aaa@gmail.com-1601974809989.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/aaa@gmail.com-1601974809989.jpg -------------------------------------------------------------------------------- /Backend/images/mk.png-1600584079501.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/mk.png-1600584079501.png -------------------------------------------------------------------------------- /Backend/images/mk.png-1600584158841.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/mk.png-1600584158841.png -------------------------------------------------------------------------------- /Backend/images/mk.png-1600584664881.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/mk.png-1600584664881.png -------------------------------------------------------------------------------- /Backend/images/mk.png-1600584723450.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/mk.png-1600584723450.png -------------------------------------------------------------------------------- /Backend/images/mk.png-1600584763907.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/mk.png-1600584763907.png -------------------------------------------------------------------------------- /Backend/images/mk.png-1600585046513.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/mk.png-1600585046513.png -------------------------------------------------------------------------------- /Backend/images/mk05-1600586633316.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/mk05-1600586633316.jpg -------------------------------------------------------------------------------- /Backend/images/mk05-1600675670507.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/mk05-1600675670507.jpg -------------------------------------------------------------------------------- /Backend/images/mk0555-1602169841812.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/mk0555-1602169841812.png -------------------------------------------------------------------------------- /Backend/images/mk123-1600846566602.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/mk123-1600846566602.jpg -------------------------------------------------------------------------------- /Backend/images/professional-front-end-ui-developer-1601997168376.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/professional-front-end-ui-developer-1601997168376.jpg -------------------------------------------------------------------------------- /Backend/images/rohan03-1602137429890.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/rohan03-1602137429890.jpg -------------------------------------------------------------------------------- /Backend/images/rohan03-1602139155813.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/rohan03-1602139155813.jpg -------------------------------------------------------------------------------- /Backend/images/rohan03-1602139451184.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/rohan03-1602139451184.jpg -------------------------------------------------------------------------------- /Backend/images/rohan03-1602140136758.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/rohan03-1602140136758.jpg -------------------------------------------------------------------------------- /Backend/images/rohan03-1602140498131.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/rohan03-1602140498131.jpg -------------------------------------------------------------------------------- /Backend/images/rohan03-1602483897544.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/rohan03-1602483897544.jpg -------------------------------------------------------------------------------- /Backend/images/ths-is-first-title-1602046543527.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/ths-is-first-title-1602046543527.jpg -------------------------------------------------------------------------------- /Backend/images/ths-is-first-title-1602052884834.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/ths-is-first-title-1602052884834.jpg -------------------------------------------------------------------------------- /Backend/images/ths-is-first-title-1602052950478.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/ths-is-first-title-1602052950478.jpg -------------------------------------------------------------------------------- /Backend/images/title-1-1600746770031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/title-1-1600746770031.png -------------------------------------------------------------------------------- /Backend/images/title-2-1600752511423.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/title-2-1600752511423.png -------------------------------------------------------------------------------- /Backend/images/title-3-1600839418515.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/title-3-1600839418515.png -------------------------------------------------------------------------------- /Backend/images/title-33-1600839550483.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/title-33-1600839550483.png -------------------------------------------------------------------------------- /Backend/images/title-5-1602052981299.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/title-5-1602052981299.jpg -------------------------------------------------------------------------------- /Backend/images/ttitle3-1601996216278.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/ttitle3-1601996216278.jpg -------------------------------------------------------------------------------- /Backend/images/ttitle3-1601996218151.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/ttitle3-1601996218151.jpg -------------------------------------------------------------------------------- /Backend/images/wedding-bellsq00-1600585936835.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/images/wedding-bellsq00-1600585936835.png -------------------------------------------------------------------------------- /Backend/middlewares/check-auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/middlewares/check-auth.js -------------------------------------------------------------------------------- /Backend/middlewares/header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/middlewares/header.js -------------------------------------------------------------------------------- /Backend/models/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/models/post.js -------------------------------------------------------------------------------- /Backend/models/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/models/profile.js -------------------------------------------------------------------------------- /Backend/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/models/user.js -------------------------------------------------------------------------------- /Backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/package-lock.json -------------------------------------------------------------------------------- /Backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/Backend/package.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/README.md -------------------------------------------------------------------------------- /debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/debug.log -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/Components/Auth/Auth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Components/Auth/Auth.css -------------------------------------------------------------------------------- /src/Components/Auth/Auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Components/Auth/Auth.js -------------------------------------------------------------------------------- /src/Components/Posts/CreatePost/CreatePost.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Components/Posts/CreatePost/CreatePost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Components/Posts/CreatePost/CreatePost.js -------------------------------------------------------------------------------- /src/Components/Posts/Mypost/Mypost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Components/Posts/Mypost/Mypost.js -------------------------------------------------------------------------------- /src/Components/Posts/Posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Components/Posts/Posts.js -------------------------------------------------------------------------------- /src/Components/Posts/ShowPost/ShowPost.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Components/Posts/ShowPost/ShowPost.css -------------------------------------------------------------------------------- /src/Components/Posts/ShowPost/ShowPost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Components/Posts/ShowPost/ShowPost.js -------------------------------------------------------------------------------- /src/Components/Posts/SinglePost/SinglePost.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Components/Posts/SinglePost/SinglePost.css -------------------------------------------------------------------------------- /src/Components/Posts/SinglePost/SinglePost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Components/Posts/SinglePost/SinglePost.js -------------------------------------------------------------------------------- /src/Components/Users/CreateProfile/CreateProfile.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Components/Users/CreateProfile/CreateProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Components/Users/CreateProfile/CreateProfile.js -------------------------------------------------------------------------------- /src/Components/Users/Profile/Profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Components/Users/Profile/Profile.css -------------------------------------------------------------------------------- /src/Components/Users/Profile/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Components/Users/Profile/Profile.js -------------------------------------------------------------------------------- /src/Components/Users/ShowUsers/ShowUser.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Components/Users/ShowUsers/ShowUser.css -------------------------------------------------------------------------------- /src/Components/Users/ShowUsers/ShowUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Components/Users/ShowUsers/ShowUser.js -------------------------------------------------------------------------------- /src/Containers/ImageUpload/ImageUpload.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Containers/ImageUpload/ImageUpload.css -------------------------------------------------------------------------------- /src/Containers/ImageUpload/ImageUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Containers/ImageUpload/ImageUpload.js -------------------------------------------------------------------------------- /src/Containers/Menubar/Backdrop/Backdrop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Containers/Menubar/Backdrop/Backdrop.css -------------------------------------------------------------------------------- /src/Containers/Menubar/Backdrop/Backdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Containers/Menubar/Backdrop/Backdrop.js -------------------------------------------------------------------------------- /src/Containers/Menubar/MainNavigation/MainNavigation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Containers/Menubar/MainNavigation/MainNavigation.css -------------------------------------------------------------------------------- /src/Containers/Menubar/MainNavigation/MainNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Containers/Menubar/MainNavigation/MainNavigation.js -------------------------------------------------------------------------------- /src/Containers/Menubar/Mainheader/MainHeader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Containers/Menubar/Mainheader/MainHeader.css -------------------------------------------------------------------------------- /src/Containers/Menubar/Mainheader/Mainheader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Containers/Menubar/Mainheader/Mainheader.js -------------------------------------------------------------------------------- /src/Containers/Menubar/Navlinks/NavLinks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Containers/Menubar/Navlinks/NavLinks.css -------------------------------------------------------------------------------- /src/Containers/Menubar/Navlinks/NavLinks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Containers/Menubar/Navlinks/NavLinks.js -------------------------------------------------------------------------------- /src/Containers/Menubar/SideDrawer/SideDrawer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Containers/Menubar/SideDrawer/SideDrawer.css -------------------------------------------------------------------------------- /src/Containers/Menubar/SideDrawer/SideDrawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Containers/Menubar/SideDrawer/SideDrawer.js -------------------------------------------------------------------------------- /src/Containers/Modal/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Containers/Modal/Modal.js -------------------------------------------------------------------------------- /src/Containers/SocialMedia.js/SocialMedia.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Containers/SocialMedia.js/SocialMedia.css -------------------------------------------------------------------------------- /src/Containers/SocialMedia.js/SocialMedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Containers/SocialMedia.js/SocialMedia.js -------------------------------------------------------------------------------- /src/Containers/SocialMedia.js/SocialMediaHorizontal/SocialMediaHorizontal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Containers/SocialMedia.js/SocialMediaHorizontal/SocialMediaHorizontal.js -------------------------------------------------------------------------------- /src/Containers/Spinner/Spinner.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Containers/Spinner/Spinner.css -------------------------------------------------------------------------------- /src/Containers/Spinner/Spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Containers/Spinner/Spinner.js -------------------------------------------------------------------------------- /src/Containers/footer/footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Containers/footer/footer.css -------------------------------------------------------------------------------- /src/Containers/footer/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/Containers/footer/footer.js -------------------------------------------------------------------------------- /src/assets/asset-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/assets/asset-1.png -------------------------------------------------------------------------------- /src/assets/avtar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/assets/avtar.jpg -------------------------------------------------------------------------------- /src/context/auth-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/context/auth-context.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/logo.svg -------------------------------------------------------------------------------- /src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/serviceWorker.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /src/utils/ToText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/utils/ToText.js -------------------------------------------------------------------------------- /src/utils/emailRegex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/utils/emailRegex.js -------------------------------------------------------------------------------- /src/utils/validateform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/src/utils/validateform.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mehulk05/Blogapp-using-MERN/HEAD/yarn.lock --------------------------------------------------------------------------------