Skip to content

Commit c2d44f0

Browse files
authored
Update homepage meta description (#500)
1 parent 5d23cd3 commit c2d44f0

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

app/actions/home.test.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ describe("home route", () => {
3939
expect(response.headers.get("Cache-Control")).toBe(CACHE_CONTROL.DEFAULT);
4040

4141
let html = await response.text();
42+
expect(html).toContain(
43+
'name="description" content="The fully-stacked web framework"',
44+
);
4245
expect(html).toContain('id="main-content"');
4346
expect(html).toContain('id="remix-landing-app"');
4447
expect(html).toContain(

app/actions/home.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ type HomePageProps = {
1212
};
1313

1414
const HOME_TITLE = "Remix - The Fully-Stacked Web Framework";
15-
const HOME_DESCRIPTION =
16-
"Remix is a full-stack web framework with built-in server, data, UI, asset, and testing tools. Build from a single package with first-class support for coding agents.";
15+
const HOME_DESCRIPTION = "The fully-stacked web framework";
1716

1817
export function HomePage(handle: Handle<HomePageProps>) {
1918
return () => (

0 commit comments

Comments
 (0)