Skip to content

Commit f18c689

Browse files
committed
improvements to theme and texts
1 parent 2eff89a commit f18c689

File tree

5 files changed

+24
-10
lines changed

5 files changed

+24
-10
lines changed

.vitepress/config.mts

+6-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,16 @@ import { defineConfig } from 'vitepress'
22

33
// https://vitepress.dev/reference/site-config
44
export default defineConfig({
5-
title: "Verifiable credentials in Zencode",
6-
description: "Simple implementation guide for W3C verifiable credentials using Zencode: easy, secure and interoperable.",
5+
title: "Zencode VCs",
6+
description: "Simple implementation guide for verifiable credentials using Zencode: easy, secure, interoperable and cross-country.",
77
base: "/zencode-w3c-vc/",
88
srcDir: "./src",
99
themeConfig: {
1010
// https://vitepress.dev/reference/default-theme-config
11+
footer: {
12+
message: 'Funded by Horizon Europe - NGI <a href="https://ngisargasso.eu/">Sargasso</a> - GA nr. <a href="https://cordis.europa.eu/project/id/101092887">101092887</a>',
13+
copyright: 'Copyright (C) 2025 <a href="https://forkbomb.solutions">Forkbomb BV</a> - GNU GPL License'
14+
},
1115
nav: [
1216
{ text: 'Home', link: '/' },
1317
{ text: 'DIDRoom', link: 'https://didroom.com' },
@@ -47,7 +51,6 @@ export default defineConfig({
4751
]
4852
}
4953
],
50-
5154
socialLinks: [
5255
{ icon: 'linkedin', link: 'https://linkedin.com/company/forkbomb' },
5356
{ icon: 'github', link: 'https://github.com/dyne/zencode-w3c-vc' },

.vitepress/theme/custom.css

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
:root.dark img[src$=".svg"] {
2+
filter: invert(1);
3+
}
4+
5+
:root:not(.dark) img[src$=".svg"] {
6+
filter: invert(0);
7+
}

.vitepress/theme/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import DefaultTheme from "vitepress/theme";
22
import "@catppuccin/vitepress/theme/mocha/teal.css";
3+
import "./custom.css";
34
// import "@catppuccin/vitepress/theme/latte/rosewater.css";
45

56
export default DefaultTheme;

src/index.md

+9-7
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
layout: home
44

55
hero:
6-
name: "Zencode VC journey"
7-
text: "Verifiable credentials for your applications"
8-
tagline: 'Easy, secure, interoperable'
6+
name: "Zencode dev journey"
7+
text: "Verifiable credentials for wallet and issuer"
8+
tagline: 'Easy, secure, interoperable and cross-country.'
99
image:
1010
src: https://dyne.org/images/logos/black-transparent-Icon.svg
11-
alt: Quick hands-on guide
11+
alt: Hands-on, Dyne.org style
1212
actions:
1313
- theme: brand
1414
text: 💥 MLDSA (Post-Quantum)
@@ -22,9 +22,11 @@ hero:
2222

2323
features:
2424
- title: 👟 No-code
25-
details: 'Human-like language, easy to review and customize'
25+
details: 'Human-like language, easy to embed, customize and review'
2626
- title: 🚀 Cross-platform
27-
details: 'Works everywhere: WASM, ESP32 chips, RISC-V, Windows, Apple, GNU+Linux, BSD'
27+
details: 'Works on WASM, ESP32, RISC-V, Win, Apple, Android, iOS'
2828
- title: 🤝 End-to-end
29-
details: 'Fully end-to-end crypto connecting mobile wallets to servers'
29+
details: 'Encryption between peers, private keys are never shared'
30+
- title: 🛡️ Compliant
31+
details: 'Following world-class standards and high ambitions in security'
3032
---

src/mldsa-w3c-vc.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ title: Post Quantum verifiable credentials
55
# {{ $frontmatter.title }}
66

77
Conforming to:
8+
- [Module-Lattice-Based Digital Signature Standard (FIPS 204)](https://csrc.nist.gov/pubs/fips/204/final)
89
- [Verifiable Credentials Data Model v2.0](https://www.w3.org/TR/vc-data-model-2.0/)
910
- [Verifiable Credential Data Integrity v1.0](https://www.w3.org/TR/vc-data-integrity/)
1011
- [Quantum-Safe Cryptosuites v0.3](https://w3c-ccg.github.io/di-quantum-safe/)

0 commit comments

Comments
 (0)