Skip to content

Commit 6b9df1f

Browse files
committed
Update date and color contrast of dev support boxes
1 parent a733d7e commit 6b9df1f

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

website/src/components/Sponsor/index.js

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,24 @@ import React, { useContext } from "react";
66

77
import { SponsorContext } from "../../contexts/sponsor";
88

9+
function Avatar({ src }) {
10+
return src ? (
11+
<img className={styles.avatar} src={src} />
12+
) : (
13+
<FallbackAvatar className={styles.avatar} />
14+
);
15+
}
16+
17+
function LinkTo({ href, name }) {
18+
return href ? (
19+
<Link className={styles.name} to={href}>
20+
{name}
21+
</Link>
22+
) : (
23+
<div className={styles.name}>{name}</div>
24+
);
25+
}
26+
927
export default function Sponsor({
1028
name,
1129
avatar,
@@ -17,24 +35,6 @@ export default function Sponsor({
1735
const level = useContext(SponsorContext);
1836
const showAvatar = level === "featured" || level === "leaders";
1937

20-
function Avatar({ src }) {
21-
return src ? (
22-
<img className={styles.avatar} src={src} />
23-
) : (
24-
<FallbackAvatar className={styles.avatar} />
25-
);
26-
}
27-
28-
function LinkTo({ href }) {
29-
return href ? (
30-
<Link className={styles.name} to={href}>
31-
{name}
32-
</Link>
33-
) : (
34-
<div className={styles.name}>{name}</div>
35-
);
36-
}
37-
3838
return (
3939
<div
4040
className={clsx(
@@ -50,7 +50,7 @@ export default function Sponsor({
5050
<Avatar src={avatar ? "https://www.graphile.org" + avatar : null} />
5151
) : null}
5252

53-
<LinkTo href={href} />
53+
<LinkTo href={href} name={name} />
5454
</div>
5555
);
5656
}

website/src/components/TiersPlus/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const TierList = [
1313
buttonText: "Start Monthly Plan",
1414
frequency: "/mo",
1515
comparison: "Cancel any time",
16-
badge: "Updated August 2025",
16+
badge: "Updated September 2025",
1717
description: (
1818
<>
1919
<ul>

0 commit comments

Comments
 (0)