-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathcall-to-actions.ts
More file actions
94 lines (92 loc) · 2.2 KB
/
Copy pathcall-to-actions.ts
File metadata and controls
94 lines (92 loc) · 2.2 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
import {
BookOpen,
BarChart3,
KeyRound,
Package,
Youtube,
MessageCircle,
Twitter,
FlaskConical,
Gauge,
Telescope,
LucideIcon,
} from 'lucide-react';
export interface CallToAction {
title: string;
url: string;
icon: LucideIcon;
type: 'repo' | 'tool' | 'community';
description?: string;
}
export const callToActionsData: CallToAction[] = [
{
title: 'leanSpec',
url: 'https://github.com/leanEthereum/leanSpec',
icon: BookOpen,
type: 'repo',
description: 'Specifications for the Lean Consensus work',
},
{
title: 'leanSig',
url: 'https://github.com/leanEthereum/leanSig',
icon: KeyRound,
type: 'repo',
description: 'Post-quantum signature scheme reference implementation',
},
{
title: 'leanMultisig',
url: 'https://github.com/leanEthereum/leanMultisig',
icon: Package,
type: 'repo',
description: 'Post-quantum signature aggregation scheme reference implementation',
},
{
title: 'leanMetrics',
url: 'https://github.com/leanEthereum/leanMetrics',
icon: BarChart3,
type: 'repo',
description: 'Specifications for Lean Consensus metrics',
},
{
title: 'Hive',
url: 'https://hive.leanroadmap.org',
icon: FlaskConical,
type: 'tool',
description: 'Ethereum end-to-end test harness',
},
{
title: 'leanBench',
url: 'https://bench.leanroadmap.org',
icon: Gauge,
type: 'tool',
description: 'Cross-hardware performance tracker',
},
{
title: 'PQ Observatory',
url: 'https://observatory.leanroadmap.org',
icon: Telescope,
type: 'tool',
description: 'Devnet metrics & insights',
},
{
title: 'PQ Interop Breakout Meetings',
url: 'https://www.youtube.com/playlist?list=PLJqWcTqh_zKF_Q9HNXBLW_AtktsjToTIu',
icon: Youtube,
type: 'community',
description: 'Re-watch the weekly breakout discussions',
},
{
title: 'Eth R&D Discord',
url: 'https://discord.gg/ZJWqHacjGK',
icon: MessageCircle,
type: 'community',
description: 'Join the #post-quantum channel',
},
{
title: '@leanEthereum',
url: 'https://x.com/leanEthereum',
icon: Twitter,
type: 'community',
description: 'Follow for updates on X',
},
];