-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathindex.page.tsx
64 lines (55 loc) · 2.35 KB
/
index.page.tsx
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
import * as React from 'react';
import { Header1, Header2, LandingContainer, LandingLayout, Jumbotron } from "./components";
import { Button } from "@redocly/theme";
import { Card } from '@redocly/theme/markdoc/components/Cards/Card';
import { Cards } from '@redocly/theme/markdoc/components/Cards/Cards';
export const frontmatter = {
seo: {
title: 'Ripple Open Source Projects',
description: "Ripple Open Source is a preview of open-source projects Ripple is building for the Internet of Value.",
}
};
export default function Page() {
return (
<LandingLayout>
<Jumbotron bgImage={require('images/heroimg.png')}>
<Header1>Open Source Projects</Header1>
<Header2>Explore open source projects currently in development.</Header2>
</Jumbotron>
<LandingContainer>
<Cards columns={2}>
<Card title="Batch transactions" to="docs/xls-56d-batch-transactions/">
<p>Prepare and submit up to 8 transactions in a single batch.</p>
<Button size="large" variant="primary">
Go to docs
</Button>
</Card>
<Card title="LedgerStateFix" to="docs/ledger-state-fix/">
<p>A general purpose transaction used to fix specific issues affecting the XRP ledger.</p>
<Button size="large" variant="primary">
Go to docs
</Button>
</Card>
<Card title="simulate" to="docs/xls-69d/">
<p>An API method to test transaction results without submitting a transaction to the XRP Ledger.</p>
<Button size="large" variant="primary">
Go to docs
</Button>
</Card>
<Card title="Credentials" to="docs/xls-70d-credentials/">
<p>Create and store credentials on the blockchain for compliance checks.</p>
<Button size="large" variant="primary">
Go to docs
</Button>
</Card>
<Card title="AMMClawback" to="docs/xls-73d/">
<p>The AMMClawback transaction enables token issuers to claw back tokens from wallets that have deposited into AMM pools, ensuring regulatory compliance.</p>
<Button size="large" variant="primary">
Go to docs
</Button>
</Card>
</Cards>
</LandingContainer>
</LandingLayout>
);
}