Skip to content

Commit

Permalink
Merge branch 'mdazfar2:main' into contributor
Browse files Browse the repository at this point in the history
  • Loading branch information
pandeyji711 authored Jun 4, 2024
2 parents 084dcb2 + f665628 commit 6027087
Show file tree
Hide file tree
Showing 5 changed files with 237 additions and 0 deletions.
34 changes: 34 additions & 0 deletions CONTRIBUTING.md → CONTRIBUTING_DESKTOP.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,40 @@ Follow these steps to setup ShellScript-Toolkit on your local machine

> Click _compare across forks_ if you don't see your branch
### Alternatively, contribute using GitHub Desktop
1. **Open GitHub Desktop:**
Launch GitHub Desktop and log in to your GitHub account if you haven't already.

2. **Clone the Repository:**
- If you haven't cloned the HelpOps-Hub repository yet, you can do so by clicking on the "File" menu and selecting "Clone Repository."
- Choose the HelpOps-Hub repository from the list of repositories on GitHub and clone it to your local machine.
3. **Switch to the Correct Branch:**
- Ensure you are on the branch that you want to submit a pull request for.
- If you need to switch branches, you can do so by clicking on the "Current Branch" dropdown menu and selecting the desired branch.
4. **Make Changes:**
Make your changes to the code or files in the repository using your preferred code editor.
5. **Commit Changes:**
- In GitHub Desktop, you'll see a list of the files you've changed. Check the box next to each file you want to include in the commit.
- Enter a summary and description for your changes in the "Summary" and "Description" fields, respectively. Click the "Commit to <branch-name>" button to commit your changes to the local branch.
6. **Push Changes to GitHub:**
After committing your changes, click the "Push origin" button in the top right corner of GitHub Desktop to push your changes to your forked repository on GitHub.
7. **Create a Pull Request:**
- Go to the GitHub website and navigate to your fork of the HelpOps-Hub repository.
- You should see a button to "Compare & pull request" between your fork and the original repository. Click on it.
8. **Review and Submit:**
- On the pull request page, review your changes and add any additional information, such as a title and description, that you want to include with your pull request.
- Once you're satisfied, click the "Create pull request" button to submit your pull request.

9. **Wait for Review:**
Your pull request will now be available for review by the project maintainers. They may provide feedback or ask for changes before merging your pull request into the main branch of the HelpOps-Hub repository.

---

## 🧑‍💻 Engage in Discussions
Expand Down
6 changes: 6 additions & 0 deletions Official_Website/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ <h1 class="abeezee-regular">About Us</h1>
BACK
</a>
</button>
<button class="about-button">

<a href="./faq.html">
FAQ's
</a>
</button>
</div>
<button class="sponsor-button" onclick="window.location.href='https://github.com/sponsors/mdazfar2'">
<span class="heart">&#10084;</span> Sponsor
Expand Down
27 changes: 27 additions & 0 deletions Official_Website/aboutstyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,12 @@ p{
animation: img-animate1 1s forwards ease-in;

}
.card-body{
font-size: 1.3rem !important;
}
.btn{
font-size: 1.5rem !important;
}
.mt{
margin-top: 10px;
}
Expand All @@ -126,4 +132,25 @@ p,li{
}
.mb{
margin-bottom: 50px;
}
.container{
border: solid black 1px;
padding-top: 20px;
padding-bottom: 20px;
}
.btn{
color: #02566b;
}
.btn:focus{
box-shadow: none;
}
.show{
animation: card-animate 1s forwards;
}
@keyframes card-animate {
from{
height: 0px;
}to{
height: 100px;
}
}
164 changes: 164 additions & 0 deletions Official_Website/faq.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,164 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Accordion with Animation</title>
<!-- Bootstrap CDN -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome CDN -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" rel="stylesheet">
<link rel="shortcut icon" href="Favicon.png" type="image/x-icon">
<link rel="stylesheet" href="dark_mode.css">
<link rel="stylesheet" href="aboutstyle.css">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&display=swap" rel="stylesheet">
<style>
/* Custom CSS for Accordion */
.accordion .card-header {
cursor: pointer;
}
.accordion .card-header .btn {
text-align: left;
width: 100%;
}
.accordion .card-header i {
transition: transform 0.2s;
}
.accordion .collapse.show .card-header i {
transform: rotate(180deg);
}
.accordion .card-body {
animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}
body{
overflow-y: scroll;
}
</style>
</head>
<body>
<header>

<h1 class="abeezee-regular">FAQ's</h1>
<br>
<div class="icons">
<a href="contributor-index.html" class="fa-solid fa-people-group"></a>
<a href="https://github.com" target="_blank" class="fab fa-github"></a>
<a href="https://linkedin.com" target="_blank" class="fab fa-linkedin"></a>
<a href="https://discord.com" target="_blank" class="fab fa-discord"></a>
<a href="javascript:void(0);" class="fas fa-adjust" onclick="toggleTheme()"></a>
<button class="about-button">

<a href="./about.html">
About Us
</a>
</button>
<button class="about-button">

<a href="./index.html">
BACK
</a>
</button>
</div>
<button class="sponsor-button" onclick="window.location.href='https://github.com/sponsors/mdazfar2'">
<span class="heart">&#10084;</span> Sponsor
</button>
</header>

<div class="container mt-5">

<div class="accordion" id="accordionExample">
<div class="card">
<div class="card-header" id="headingOne">
<h5 class="mb-0">
<button class="btn abeezee-regular" type="button" data-toggle="collapse" data-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
1. What is HelpOps-Hub? <i class="fas fa-chevron-down float-right"></i>
</button>
</h5>
</div>

<div id="collapseOne" class="collapse" aria-labelledby="headingOne" data-parent="#accordionExample">
<div class="card-body abeezee-regular">
HelpOps-Hub is a platform designed to assist developers and DevOps engineers in solving complex DevOps issues, ensuring you never get stuck again.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingTwo">
<h5 class="mb-0">
<button class="btn abeezee-regular" type="button" data-toggle="collapse" data-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
2. How can I use HelpOps-Hub? <i class="fas fa-chevron-down float-right"></i>
</button>
</h5>
</div>
<div id="collapseTwo" class="collapse" aria-labelledby="headingTwo" data-parent="#accordionExample">
<div class="card-body abeezee-regular">
Simply navigate through our various resources, guides, and tutorials tailored to help you overcome DevOps challenges.

</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingThree">
<h5 class="mb-0">
<button class="btn abeezee-regular" type="button" data-toggle="collapse" data-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
3. Is there a cost associated with using HelpOps-Hub?
<i class="fas fa-chevron-down float-right"></i>
</button>
</h5>
</div>
<div id="collapseThree" class="collapse" aria-labelledby="headingThree" data-parent="#accordionExample">
<div class="card-body abeezee-regular">
No there is No Cost Associated with it but May be in future it may contains cost for some resources .

</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingFour">
<h5 class="mb-0">
<button class="btn abeezee-regular" type="button" data-toggle="collapse" data-target="#collapseFour" aria-expanded="false" aria-controls="collapseFour">
4. How can I contribute to HelpOps-Hub?
<i class="fas fa-chevron-down float-right"></i>
</button>
</h5>
</div>
<div id="collapseFour" class="collapse" aria-labelledby="headingFour" data-parent="#accordionExample">
<div class="card-body abeezee-regular">
4. You can contribute by sharing your own solutions, writing tutorials, or joining our Github Reporsitory https://github.com/mdazfar2/HelpOps-Hub.
</div>
</div>
</div>
<div class="card">
<div class="card-header" id="headingFive">
<h5 class="mb-0">
<button class="btn abeezee-regular" type="button" data-toggle="collapse" data-target="#collapseFive" aria-expanded="false" aria-controls="collapseFive">
5. Who can benefit from HelpOps-Hub?
<i class="fas fa-chevron-down float-right"></i>
</button>
</h5>
</div>
<div id="collapseFive" class="collapse" aria-labelledby="headingFive" data-parent="#accordionExample">
<div class="card-body abeezee-regular">
5. HelpOps-Hub is ideal for developers, DevOps engineers, and IT professionals looking to enhance their DevOps practices and problem-solving skills.


</div>
</div>
</div>
</div>
</div>

<!-- jQuery and Bootstrap Bundle (includes Popper) -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>

</body>
</html>
6 changes: 6 additions & 0 deletions Official_Website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ <h4>Our team</h4>
About Us
</a>
</button>
<button class="about-button">

<a href="./faq.html">
FAQ's
</a>
</button>
</div>
<button class="sponsor-button" onclick="window.location.href='https://github.com/sponsors/mdazfar2'">
<span class="heart">&#10084;</span> Sponsor
Expand Down

0 comments on commit 6027087

Please sign in to comment.