Skip to content

Commit

Permalink
Merge branch 'anuragverma108:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
dipak2005 authored Nov 3, 2024
2 parents a35416a + 707b34f commit 7880277
Show file tree
Hide file tree
Showing 34 changed files with 3,994 additions and 1,356 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,11 +175,13 @@
│ │ ├── img.png
│ │ ├── login.html
│ │ ├── map.html
│ │ ├── midnight.html
│ │ ├── mood.html
│ │ ├── mylogin.html
│ │ ├── ngo.html
│ │ ├── profileedit.html
│ │ ├── quiz.html
│ │ ├── quizzes.html
│ │ ├── rate.html
│ │ ├── read.html
│ │ ├── read_later.html
Expand Down
29 changes: 29 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Security Policy
Contact: [email protected]
Expires: 2024-12-31T23:59:59.999Z
Preferred-Languages: en
Canonical: https://swapreads.com/.well-known/security.txt
Policy: https://swapreads.com/security-policy
Encryption: https://swapreads.com/pgp-key.txt

Reporting a Vulnerability
If you discover a potential security vulnerability, please report it to us promptly. Here’s how you can do so:

Submit a Report: Send an email to [email protected] with a detailed description of the vulnerability, including any relevant steps to reproduce the issue. Please include your contact information so we can follow up if needed.

Response Time: We aim to acknowledge all reports within 48 hours. Our team will review the details you provide and assess the severity of the vulnerability.

Updates: Once a vulnerability is accepted for investigation, we will provide updates on our progress every 7 days. If a vulnerability is declined, we will inform you of the reasons for our decision.

Resolution Process: If your reported vulnerability is accepted, we will work to address it as quickly as possible. Once a fix is implemented, we will communicate with you before any public disclosure to ensure you are informed.

Responsible Disclosure: We appreciate your cooperation in following responsible disclosure practices. Please do not disclose the vulnerability publicly until we have released a fix and communicated it to you.

# Please report security issues responsibly
# We aim to respond within 24 hours
# We appreciate your help in disclosing issues confidentially

# Do not disclose security issues publicly before we've had a chance to address them
# We do not authorize testing that impacts service availability or data integrity

Thank you for helping us keep our project secure!
6 changes: 6 additions & 0 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,12 @@ button {

}

button:hover{/*Added hover to enhance the UI experience*/
transform: scale(1.15);
border-radius: 8px;
background-color: #F2385A;
}

address {

font-style: normal;
Expand Down
30 changes: 30 additions & 0 deletions assets/html/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -2074,6 +2074,36 @@ <h2>Quick Links</h2>
}

fetchContributors();


// Function to animate counting from 0 to a target number
function countUp(target, elementId) {
let count = 0;
const increment = target / 150; // Increment by a fraction of the target number

const interval = setInterval(() => {
count += increment;
document.getElementById(elementId).textContent = Math.round(count) + "+"; // Add the "+" sign

// Stop the interval when count reaches or exceeds the target number
if (count >= target) {
clearInterval(interval);
document.getElementById(elementId).textContent = target + "+"; // Ensure final value is exact with the "+"
// Start counting animation again after a delay
setTimeout(() => {
countUp(target, elementId);
}, 4000);
}
}, 20);
}

// Start counting animation for each stat
countUp(2500, 'stat1');
countUp(100, 'stat2');
countUp(5000, 'stat3');



</script>

</body>
Expand Down
24 changes: 21 additions & 3 deletions assets/html/author.html
Original file line number Diff line number Diff line change
Expand Up @@ -471,8 +471,26 @@






.card:hover {
transform: scale(1.05);
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Adjust shadow as needed */
}
:root {
--shadow-color: rgba(0, 0, 0, 0.2); /* For light theme */
}

/* For dark theme */
.dark-theme :root {
--shadow-color: rgba(255, 255, 255, 0.2);
}

.card:hover {
transform: scale(1.05);
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
box-shadow: 0px 4px 8px var(--shadow-color);
}


.card-container {
Expand Down Expand Up @@ -1117,7 +1135,7 @@
</a>
</li>
<li class="dropdown-menu-item">
<a href="../html/pricing.html" onclick="lenis.scrollTo('#pricing')" class="navbar-link"
<a href="/#pricing" onclick="lenis.scrollTo('#pricing')" class="navbar-link"
data-nav-link><i class="ri-price-tag-3-fill"></i> Pricing</a>
</li>
<li class="dropdown-menu-item">
Expand Down
Loading

0 comments on commit 7880277

Please sign in to comment.