Skip to content

Commit 9de8b19

Browse files
authored
Add dedicated Security & Hash Verification page to website (#207)
1 parent 5158f68 commit 9de8b19

3 files changed

Lines changed: 586 additions & 1 deletion

File tree

src/website/src/components/Layout.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ const Layout = ({ children, pageTitle }) => {
5151
<li>
5252
<Link to="/getting-started">Getting Started</Link>
5353
</li>
54+
<li>
55+
<Link to="/security">Security</Link>
56+
</li>
5457
<li>
5558
<Link to="/docs">Documentation</Link>
5659
</li>

src/website/src/pages/index.js

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ const IndexPage = () => {
4040
<h3>🔒 Security First</h3>
4141
<p>
4242
Built-in validation with SHA-384 hashing protects against
43-
malicious filter lists and tampering.
43+
malicious filter lists and tampering.{" "}
44+
<Link to="/security">Learn about our 5 layers of protection →</Link>
4445
</p>
4546
</div>
4647
<div className="feature">
@@ -79,6 +80,15 @@ const IndexPage = () => {
7980
compilation.
8081
</p>
8182
</div>
83+
<div className="feature">
84+
<h3>
85+
<Link to="/security">Security & Hash Verification</Link>
86+
</h3>
87+
<p>
88+
Learn how our built-in security features protect you from malicious
89+
filter lists, tampering, and network attacks.
90+
</p>
91+
</div>
8292
<div className="feature">
8393
<h3>
8494
<Link to="/docs">Documentation</Link>

0 commit comments

Comments
 (0)