General Guidelines 
How to contribute 
Use pull requests to contribute to the project.
Project base structure 
.
├─ docs
│  ├─ .vitepress
│  │  └─ config.mjs
│  ├─ interview-question
│  │  ├─ behavioral
│  │  │  └─ index.md
│  │  └─ technical
│  │     ├─ CP.md
│  │     ├─ OOP.md
│  │     └─ SQL.md
│  ├─ general.md
│  ├─ gitcheat.md
│  ├─ index.md
│  └─ somepopularalgo.md
└─ package.jsonif you want to contribute into interview questions 
Two types of interview sections - Technical and behavioral: 
js
.
├─ docs
│  ├─ .vitepress
│  │  └─ config.mjs
│  ├─ interview-question
│  │  ├─ behavioral
│  │  │  └─ index.md
│  │  └─ technical
│  │     ├─ CP.md
│  │     ├─ OOP.md
│  │     └─ SQL.md
│  ├─ general.md
│  ├─ gitcheat.md
│  ├─ index.md
│  └─ somepopularalgo.md
└─ package.jsonFor techinal question just go to the OOP.md or CP.md or SQL.md based on the questions type. 
js
.
├─ docs
│  ├─ .vitepress
│  │  └─ config.mjs
│  ├─ interview-question
│  │  ├─ behavioral
│  │  │  └─ index.md
│  │  └─ technical
│  │     ├─ CP.md
│  │     ├─ OOP.md
│  │     └─ SQL.md
│  ├─ general.md
│  ├─ gitcheat.md
│  ├─ index.md
│  └─ somepopularalgo.md
└─ package.jsonTechnical Question Answer Format 
html
<details>
  <summary>
    Questions?
    <br /><span style="font-weight: bold; color: #3498db; font-size: 0.8em;">
      Company name (Question asking year)
    </span>
  </summary>
  <hr />
  answer
</details>Edit only this section 
html
<details>
  <summary>
    Questions? // [!code focus]
    <br /><span style="font-weight: bold; color: #3498db; font-size: 0.8em;">
      Company name (Question asking year) // [!code focus]
    </span>
  </summary>
  <hr />
  answer // [!code focus]
</details>Example:
html
<details>
  <summary>
    What are the main pillars of OOP
    <br /><span style="font-weight: bold; color: #3498db; font-size: 0.8em;">
      Orbitax (2024)
    </span>
  </summary>
  <hr />
  1.Inheritance 2.Polymorphism 3.Abstruction 4.Encapsulation
</details>