├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── LICENSE ├── README.md ├── netlify.toml ├── package.json ├── postcss.config.js ├── public ├── _redirects ├── black 64 64.jpg ├── blogo.png ├── favicon-32x32.jpg ├── favicon.ico ├── index.html ├── manifest.json ├── mlogo.png ├── profile.jpg ├── robots.txt └── wlogo.png ├── src ├── App.js ├── components │ ├── Footer.jsx │ └── Navbar │ │ ├── Navbar.css │ │ └── Navbar.jsx ├── context │ └── ThemeContext.js ├── index.css ├── index.js └── pages │ ├── Admin │ └── AdminPanel.jsx │ ├── Home │ ├── Home.css │ └── Home.jsx │ ├── Profile │ └── Profile.jsx │ └── Upload │ └── Upload.jsx └── tailwind.config.js /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/README.md -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /public/black 64 64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/public/black 64 64.jpg -------------------------------------------------------------------------------- /public/blogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/public/blogo.png -------------------------------------------------------------------------------- /public/favicon-32x32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/public/favicon-32x32.jpg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/mlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/public/mlogo.png -------------------------------------------------------------------------------- /public/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/public/profile.jpg -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/wlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/public/wlogo.png -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/src/components/Footer.jsx -------------------------------------------------------------------------------- /src/components/Navbar/Navbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/src/components/Navbar/Navbar.css -------------------------------------------------------------------------------- /src/components/Navbar/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/src/components/Navbar/Navbar.jsx -------------------------------------------------------------------------------- /src/context/ThemeContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/src/context/ThemeContext.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/Admin/AdminPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/src/pages/Admin/AdminPanel.jsx -------------------------------------------------------------------------------- /src/pages/Home/Home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/src/pages/Home/Home.css -------------------------------------------------------------------------------- /src/pages/Home/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/src/pages/Home/Home.jsx -------------------------------------------------------------------------------- /src/pages/Profile/Profile.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/src/pages/Profile/Profile.jsx -------------------------------------------------------------------------------- /src/pages/Upload/Upload.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/src/pages/Upload/Upload.jsx -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rohanmistry231/Medium-Blogs-Categorization-Website-Frontend/HEAD/tailwind.config.js --------------------------------------------------------------------------------