├── .gitattributes ├── .gitignore ├── README.md ├── package.json ├── public ├── assets │ └── images │ │ ├── Purple-Combination-colors-graphic-design-predictions-1024x576-1024x576.jpg │ │ ├── Synthwave-Postmodern.jpg │ │ ├── author.jpg │ │ ├── bg.jpg │ │ ├── designer-1.jpg │ │ ├── f67396fc3cfce63a28e07ebb35d974ac.jpg │ │ ├── fQwuyKJ9qxjSbr6REcgtmW-1200-80.jpg │ │ ├── graphic-design-trends.png │ │ └── make-it-personal.jpg ├── drawing.png ├── index.html ├── manifest.json ├── poster.png └── robots.txt └── src ├── App.css ├── App.jsx ├── components ├── common │ ├── AnimatedBackground │ │ ├── index.jsx │ │ └── style.css │ ├── Chip │ │ ├── Chip.jsx │ │ └── style.css │ ├── EmptyList │ │ ├── index.jsx │ │ └── style.css │ └── spinner │ │ └── Spinner.jsx └── home │ ├── BlogList │ ├── BlogItem │ │ ├── index.jsx │ │ └── style.css │ ├── index.jsx │ └── style.css │ ├── SearchBar │ ├── index.jsx │ └── style.css │ ├── footer │ ├── index.jsx │ └── style.css │ └── header │ ├── index.jsx │ └── style.css ├── images └── 13525-empty.gif ├── index.js └── pages ├── admin ├── adminLogin │ ├── index.jsx │ └── style.css └── dashboard │ ├── components │ ├── ManageBlogs.jsx │ ├── NewBlog.jsx │ └── style.css │ ├── index.jsx │ └── style.css ├── blog ├── index.jsx └── style.css └── home └── index.jsx /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/package.json -------------------------------------------------------------------------------- /public/assets/images/Purple-Combination-colors-graphic-design-predictions-1024x576-1024x576.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/public/assets/images/Purple-Combination-colors-graphic-design-predictions-1024x576-1024x576.jpg -------------------------------------------------------------------------------- /public/assets/images/Synthwave-Postmodern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/public/assets/images/Synthwave-Postmodern.jpg -------------------------------------------------------------------------------- /public/assets/images/author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/public/assets/images/author.jpg -------------------------------------------------------------------------------- /public/assets/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/public/assets/images/bg.jpg -------------------------------------------------------------------------------- /public/assets/images/designer-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/public/assets/images/designer-1.jpg -------------------------------------------------------------------------------- /public/assets/images/f67396fc3cfce63a28e07ebb35d974ac.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/public/assets/images/f67396fc3cfce63a28e07ebb35d974ac.jpg -------------------------------------------------------------------------------- /public/assets/images/fQwuyKJ9qxjSbr6REcgtmW-1200-80.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/public/assets/images/fQwuyKJ9qxjSbr6REcgtmW-1200-80.jpg -------------------------------------------------------------------------------- /public/assets/images/graphic-design-trends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/public/assets/images/graphic-design-trends.png -------------------------------------------------------------------------------- /public/assets/images/make-it-personal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/public/assets/images/make-it-personal.jpg -------------------------------------------------------------------------------- /public/drawing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/public/drawing.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/public/poster.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/components/common/AnimatedBackground/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/components/common/AnimatedBackground/index.jsx -------------------------------------------------------------------------------- /src/components/common/AnimatedBackground/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/components/common/AnimatedBackground/style.css -------------------------------------------------------------------------------- /src/components/common/Chip/Chip.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/components/common/Chip/Chip.jsx -------------------------------------------------------------------------------- /src/components/common/Chip/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/components/common/Chip/style.css -------------------------------------------------------------------------------- /src/components/common/EmptyList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/components/common/EmptyList/index.jsx -------------------------------------------------------------------------------- /src/components/common/EmptyList/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/components/common/EmptyList/style.css -------------------------------------------------------------------------------- /src/components/common/spinner/Spinner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/components/common/spinner/Spinner.jsx -------------------------------------------------------------------------------- /src/components/home/BlogList/BlogItem/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/components/home/BlogList/BlogItem/index.jsx -------------------------------------------------------------------------------- /src/components/home/BlogList/BlogItem/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/components/home/BlogList/BlogItem/style.css -------------------------------------------------------------------------------- /src/components/home/BlogList/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/components/home/BlogList/index.jsx -------------------------------------------------------------------------------- /src/components/home/BlogList/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/components/home/BlogList/style.css -------------------------------------------------------------------------------- /src/components/home/SearchBar/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/components/home/SearchBar/index.jsx -------------------------------------------------------------------------------- /src/components/home/SearchBar/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/components/home/SearchBar/style.css -------------------------------------------------------------------------------- /src/components/home/footer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/components/home/footer/index.jsx -------------------------------------------------------------------------------- /src/components/home/footer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/components/home/footer/style.css -------------------------------------------------------------------------------- /src/components/home/header/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/components/home/header/index.jsx -------------------------------------------------------------------------------- /src/components/home/header/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/components/home/header/style.css -------------------------------------------------------------------------------- /src/images/13525-empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/images/13525-empty.gif -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/admin/adminLogin/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/pages/admin/adminLogin/index.jsx -------------------------------------------------------------------------------- /src/pages/admin/adminLogin/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/pages/admin/adminLogin/style.css -------------------------------------------------------------------------------- /src/pages/admin/dashboard/components/ManageBlogs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/pages/admin/dashboard/components/ManageBlogs.jsx -------------------------------------------------------------------------------- /src/pages/admin/dashboard/components/NewBlog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/pages/admin/dashboard/components/NewBlog.jsx -------------------------------------------------------------------------------- /src/pages/admin/dashboard/components/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/pages/admin/dashboard/components/style.css -------------------------------------------------------------------------------- /src/pages/admin/dashboard/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/pages/admin/dashboard/index.jsx -------------------------------------------------------------------------------- /src/pages/admin/dashboard/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/pages/admin/dashboard/style.css -------------------------------------------------------------------------------- /src/pages/blog/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/pages/blog/index.jsx -------------------------------------------------------------------------------- /src/pages/blog/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/pages/blog/style.css -------------------------------------------------------------------------------- /src/pages/home/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sudoyasir/the-blog-hub/HEAD/src/pages/home/index.jsx --------------------------------------------------------------------------------