Skip to content

Commit 9612917

Browse files
Copilotmahata
andcommitted
Change "MLack" to "Mlack" in About page branding
Co-authored-by: mahata <[email protected]>
1 parent 4fe7ab4 commit 9612917

File tree

4 files changed

+211
-16
lines changed

4 files changed

+211
-16
lines changed

hono/components/AboutPage.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ describe("AboutPage component", () => {
1515
const html = jsxElement.toString();
1616

1717
// Check for all required content elements
18-
expect(html).toContain("About MLack");
18+
expect(html).toContain("About Mlack");
1919
expect(html).toContain("Slack-like application that&#39;s fully open source");
2020
expect(html).toContain("@mahata/mlack");
2121
expect(html).toContain("experimental project");
@@ -37,7 +37,7 @@ describe("AboutPage component", () => {
3737

3838
const html = jsxElement.toString();
3939
expect(html).toContain('<html lang="en">');
40-
expect(html).toContain("<title>About - MLack</title>");
40+
expect(html).toContain("<title>About - Mlack</title>");
4141
expect(html).toContain('class="about-container"');
4242
expect(html).toContain('class="page-title"');
4343
expect(html).toContain('class="content"');

hono/components/AboutPage.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ export async function AboutPage() {
44
<head>
55
<meta charSet="UTF-8" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>About - MLack</title>
7+
<title>About - Mlack</title>
88
<link rel="stylesheet" href="/components/AboutPage.css" />
99
</head>
1010
<body>
1111
<div className="about-container">
12-
<h1 className="page-title">About MLack</h1>
12+
<h1 className="page-title">About Mlack</h1>
1313

1414
<div className="content">
1515
<p>
16-
MLack is a Slack-like application that's fully open source.
16+
Mlack is a Slack-like application that's fully open source.
1717
The source code is available at <a href="https://github.com/mahata/mlack" target="_blank" rel="noopener noreferrer">@mahata/mlack</a>.
1818
</p>
1919

hono/routes/index.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ describe("Root page", () => {
9999
const html = await response.text();
100100

101101
// Check for About page specific content
102-
expect(html).toContain("<title>About - MLack</title>");
103-
expect(html).toContain("About MLack");
102+
expect(html).toContain("<title>About - Mlack</title>");
103+
expect(html).toContain("About Mlack");
104104
expect(html).toContain("Slack-like application that&#39;s fully open source");
105105
expect(html).toContain("@mahata/mlack");
106106
expect(html).toContain("GitHub Copilot Coding Agent");

package-lock.json

Lines changed: 204 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)