Skip to content

Commit e34f22c

Browse files
committed
fix: move email revocation to bottom-right of features grid, fix KVK → KvK
Reorder feature cards: API Keys, Identity-Based Signing, EU Hosted, E2E Encryption, Open Source, Email Revocation (coming soon). Fix KVK spelling to KvK across all pages.
1 parent c8a1959 commit e34f22c

6 files changed

Lines changed: 24 additions & 24 deletions

File tree

src/lib/locales/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
},
3535
"identity": {
3636
"title": "Identity-Based Signing",
37-
"description": "Sign emails with your organization name, KVK number, phone, and email — verified through Yivi."
37+
"description": "Sign emails with your organization name, KvK number, phone, and email — verified through Yivi."
3838
},
3939
"encryption": {
4040
"title": "End-to-End Encryption",

src/routes/(marketing)/+page.svelte

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -39,34 +39,23 @@
3939

4040
<div class="feature-card">
4141
<div class="feature-icon">
42-
<Icon icon="mdi:server-security" width="32" height="32" />
43-
</div>
44-
<h3>Hosted in the EU</h3>
45-
<p>
46-
All data is stored and processed within the European Union, ensuring full GDPR
47-
compliance and data sovereignty.
48-
</p>
49-
</div>
50-
51-
<div class="feature-card">
52-
<div class="feature-icon">
53-
<Icon icon="mdi:email-remove" width="32" height="32" />
42+
<Icon icon="mdi:shield-account" width="32" height="32" />
5443
</div>
55-
<h3>Email Revocation <span class="coming-soon">Coming soon</span></h3>
44+
<h3>Identity-Based Signing</h3>
5645
<p>
57-
Revoke signed emails after sending. Recipients will be notified that the email is
58-
no longer valid.
46+
Sign emails with your organization name, KvK number, phone, and email — verified
47+
through Yivi.
5948
</p>
6049
</div>
6150

6251
<div class="feature-card">
6352
<div class="feature-icon">
64-
<Icon icon="mdi:shield-account" width="32" height="32" />
53+
<Icon icon="mdi:server-security" width="32" height="32" />
6554
</div>
66-
<h3>Identity-Based Signing</h3>
55+
<h3>Hosted in the EU</h3>
6756
<p>
68-
Sign emails with your organization name, KVK number, phone, and email — verified
69-
through Yivi.
57+
All data is stored and processed within the European Union, ensuring full GDPR
58+
compliance and data sovereignty.
7059
</p>
7160
</div>
7261

@@ -91,6 +80,17 @@
9180
community-driven.
9281
</p>
9382
</div>
83+
84+
<div class="feature-card">
85+
<div class="feature-icon">
86+
<Icon icon="mdi:email-remove" width="32" height="32" />
87+
</div>
88+
<h3>Email Revocation <span class="coming-soon">Coming soon</span></h3>
89+
<p>
90+
Revoke signed emails after sending. Recipients will be notified that the email is
91+
no longer valid.
92+
</p>
93+
</div>
9494
</div>
9595
</section>
9696

src/routes/(marketing)/register/+page.server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export const actions: Actions = {
4141
}
4242

4343
if (kvkNumber && !/^\d{8}$/.test(kvkNumber)) {
44-
errors.kvkNumber = 'KVK number must be 8 digits';
44+
errors.kvkNumber = 'KvK number must be 8 digits';
4545
}
4646

4747
if (Object.keys(errors).length > 0) {

src/routes/(marketing)/register/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
</div>
119119

120120
<div class="form-group">
121-
<label for="kvkNumber">KVK number</label>
121+
<label for="kvkNumber">KvK number</label>
122122
<input
123123
id="kvkNumber"
124124
name="kvkNumber"

src/routes/(portal)/portal/api-keys/create/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999

100100
<label class="checkbox-label">
101101
<input type="checkbox" name="signKvkNumber" />
102-
<span>KVK number</span>
102+
<span>KvK number</span>
103103
</label>
104104
</fieldset>
105105

src/routes/(portal)/portal/organization/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
{ key: 'email', label: 'Contact email', value: org.email },
1717
{ key: 'contactName', label: 'Contact person', value: org.contactName },
1818
{ key: 'phone', label: 'Phone number', value: org.phone ?? '' },
19-
{ key: 'kvkNumber', label: 'KVK number', value: org.kvkNumber ?? '' }
19+
{ key: 'kvkNumber', label: 'KvK number', value: org.kvkNumber ?? '' }
2020
]);
2121
2222
function startEdit(key: string, currentValue: string) {

0 commit comments

Comments
 (0)