Skip to content

Commit e6f4391

Browse files
committed
feat: update organization name and contact email across multiple components
1 parent 0e71d40 commit e6f4391

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

packages/web/src/components/ui/disclaimer-banner.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,10 @@ export function DisclaimerBanner({ compact = false }: DisclaimerBannerProps) {
3434
investment offering, or a solicitation of funds. No returns are
3535
promised or guaranteed. Interested in learning more? Contact{" "}
3636
<a
37-
href="mailto:m@warondisease.org"
37+
href="mailto:hello@warondisease.org"
3838
className="font-black underline hover:text-foreground transition-colors"
3939
>
40-
m@warondisease.org
40+
hello@warondisease.org
4141
</a>.
4242
</p>
4343
</div>

packages/web/src/content/referendum-sites/one-percent-treaty.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ export const onePercentTreatyContent: ReferendumSiteContent = {
114114
eyebrow: "Organizational endorsement",
115115
title: "Endorse the 1% Treaty",
116116
description:
117-
"Submit your organization's official position. An administrator verifies it, then publishes it on the supporters page. No committees. No studies about studies.",
117+
"Allowing billions to suffer and die from disease so we can have capacity for 120 apocalypses instead of 118.8 is morally wrong. Historically, mass cruelties like slavery don't end until 3.5% of people have the courage to say it in public. By endorsing this treaty, you can be part of that 3.5% — instead of the 96.5% who allowed it to continue.",
118118
signInTitle: "Sign in to endorse",
119119
signInDescription:
120120
"Endorsements are tied to a verified account, because your species requires this before believing anything.",

packages/web/src/lib/__tests__/site-structured-data.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ describe("buildSiteStructuredData", () => {
1515
const website = graph.find((node) => node["@type"] === "WebSite");
1616

1717
expect(organization).toMatchObject({
18-
name: "The Institute for Accelerated Medicine",
18+
name: "The Earth Optimization Commission",
1919
url: "https://optimitron.com",
20-
email: "m@warondisease.org",
20+
email: "hello@warondisease.org",
2121
});
2222
expect(website).toMatchObject({
2323
name: "1% Treaty",

packages/web/src/lib/site.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ export interface SiteConfig {
3232
primaryTaskKey: string | null;
3333
}
3434

35-
const ORGANIZATION_NAME = "The Institute for Accelerated Medicine";
35+
const ORGANIZATION_NAME = "The Earth Optimization Commission";
3636
const ORGANIZATION_URL = OPTIMITRON_CANONICAL_ORIGIN;
3737
const ORGANIZATION_LOGO_PATH = "/icons/icon-192.png";
38-
const PUBLIC_CONTACT_EMAIL = "m@warondisease.org";
38+
const PUBLIC_CONTACT_EMAIL = "hello@warondisease.org";
3939
const PUBLIC_CONTACT_URL = `${OPTIMITRON_CANONICAL_ORIGIN}/about`;
4040
const ORGANIZATION_SAME_AS = ["https://github.com/mikepsinn/optimitron"];
4141

0 commit comments

Comments
 (0)