-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathdata.ts
More file actions
24 lines (22 loc) · 750 Bytes
/
data.ts
File metadata and controls
24 lines (22 loc) · 750 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
import RewardsSvg from "@/assets/svgs/defi/rewards.svg"
import SecureSvg from "@/assets/svgs/defi/secure.svg"
import UpSvg from "@/assets/svgs/defi/up.svg"
const data = [
{
icon: RewardsSvg,
title: "Get staking rewards",
description: "ETH native PoS staking rewards.",
},
{
icon: UpSvg,
title: "Deep DeFi Integrations",
description:
"Earn additional rewards from Scroll Sessions and from Scroll's DeFi ecosystem by deploying scrETH to eligible DeFi destinations on Scroll.",
},
{
icon: SecureSvg,
title: "Liquid and secure",
description: "scrETH can be traded, used as collateral or, in the future, help secure the set of AVSs that rely on them for economic security",
},
]
export default data