Project Structure 📂
├── .env.example
├── .github
└── workflows
│ └── greetings.yml
├── .gitignore
├── CONTRIBUTING.md
├── Code_Of_Conduct.md
├── LICENSE
├── README.md
├── package-lock.json
├── package.json
├── public
├── android-chrome-192x192.png
├── android-chrome-512x512.png
├── apple-touch-icon.png
├── favicon-32x32.png
├── favicon.ico
├── index.html
├── manifest.json
└── robots.txt
├── src
├── App.css
├── App.js
├── App.test.js
├── Components
│ ├── Blog
│ │ ├── BlogPost.jsx
│ │ └── CreateBlogPost.jsx
│ ├── Chatbot.jsx
│ ├── Github.jsx
│ ├── Landing
│ │ ├── Footer.jsx
│ │ ├── Hero.jsx
│ │ └── Navbar.jsx
│ ├── RepoInfo.jsx
│ ├── Sidebar.jsx
│ ├── explore
│ │ └── SearchProfile.jsx
│ └── post
│ │ ├── CreatePost.jsx
│ │ └── Post.jsx
├── assets
│ ├── Home.jpeg
│ ├── ReadMeAssests
│ │ ├── GSSoC-Ext.png
│ │ ├── Hacktoberfest.png
│ │ └── Login.png
│ └── logo.png
├── firebase.js
├── index.css
├── index.js
├── pages
│ ├── About.jsx
│ ├── BlogPage.jsx
│ ├── Chat.jsx
│ ├── Contact.jsx
│ ├── Explore.jsx
│ ├── Home.jsx
│ ├── Landing.jsx
│ ├── Profile.jsx
│ ├── ProfilePage.jsx
│ └── UserList.jsx
└── setupTests.js
└── tailwind.config.js