Skip to content

Commit

Permalink
Create Project Structure.md
Browse files Browse the repository at this point in the history
  • Loading branch information
siri-chandana-macha authored Nov 8, 2024
1 parent 5252f69 commit 8822f9b
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions Project Structure.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
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
```

0 comments on commit 8822f9b

Please sign in to comment.