-
-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathindex.js
More file actions
25 lines (24 loc) · 704 Bytes
/
index.js
File metadata and controls
25 lines (24 loc) · 704 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
import Link from "@docusaurus/Link";
import styles from "@site/src/components/TierPlusButtons/styles.module.css";
import clsx from "clsx";
import React from "react";
export default function TierPlusButtons() {
return (
<div className={clsx(styles.sponsorbuttons)}>
<Link
className={clsx(
"button button--primary button--lg",
styles.sponsorbutton,
)}
to="https://github.com/users/benjie/sponsorship"
></Link>
<Link
className={clsx(
"button button--primary button--lg",
styles.borderbutton,
)}
to="mailto:team@graphile.com?subject=Private%20Advisor%20enquiry"
></Link>
</div>
);
}