apple notorized badge

This commit is contained in:
Abdenasser 2024-11-03 16:55:35 +01:00
parent d6dbee3ca3
commit 112c740429
2 changed files with 36 additions and 0 deletions

View File

@ -163,6 +163,12 @@
</div>
</a>
</div>
<div class="trust-badge">
<span class="verified-icon"></span>
<span class="verified-text">Notarized by Apple for enhanced security</span>
<a href="https://developer.apple.com/documentation/security/notarizing-macos-software-before-distribution"
target="_blank" rel="noopener" class="learn-more">Learn more</a>
</div>
</div>
</section>

View File

@ -1002,4 +1002,34 @@ footer {
.coming-soon-badge:hover {
transform: translateY(-2px);
}
.trust-badge {
margin-top: 1.5rem;
padding: 0.75rem;
background: rgba(255, 255, 255, 0.1);
border-radius: 8px;
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.9rem;
}
.verified-icon {
color: #34C759;
font-weight: bold;
}
.verified-text {
color: var(--text-color);
}
.learn-more {
color: var(--primary-color);
text-decoration: none;
margin-left: 0.5rem;
}
.learn-more:hover {
text-decoration: underline;
}