-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcertificates.ts
More file actions
30 lines (29 loc) · 834 Bytes
/
Copy pathcertificates.ts
File metadata and controls
30 lines (29 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import type { Certificate } from "@/lib/types";
/**
* Certifications and completed learning paths. Entries are realistic
* placeholders — replace titles/dates with your actual credentials and add
* verification URLs where issuers provide them (see data/README.md).
*/
export const certificates = [
{
id: "cert-google-cybersecurity",
title: "Google Cybersecurity Professional Certificate",
issuer: "Google / Coursera",
date: "2025-06-15",
credentialUrl: null,
},
{
id: "cert-thm-jr-pentester",
title: "Jr Penetration Tester Learning Path",
issuer: "TryHackMe",
date: "2025-11-20",
credentialUrl: null,
},
{
id: "cert-isc2-cc",
title: "Certified in Cybersecurity (CC)",
issuer: "ISC2",
date: "2026-02-10",
credentialUrl: null,
},
] satisfies Certificate[];