Skip to content

Commit 455d6b7

Browse files
committed
Add meta title and description
1 parent b71f8cb commit 455d6b7

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

HOME_PAGE_PLAN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282

8383
### Cleanup
8484

85-
- Update `meta()` title/description/og image
85+
- Update `meta()` title/description (OG image TBD)
8686
- Delete `app/ui/homepage-scroll-experience.tsx` once unused
8787
- Remove `public/remix-logo-mask.svg` if still present (mask SVG is now inlined)
8888

app/routes/marketing/home.tsx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,13 @@ export const handle = { forceTheme: "light" };
1717

1818
export function meta({ matches }: Route.MetaArgs) {
1919
let { siteUrl } = matches[0].loaderData;
20-
let title = "Remix";
21-
let image = undefined;
22-
let description = "TODO: 2026 homepage meta description";
2320

24-
return getMeta({ title, description, siteUrl, image });
21+
return getMeta({
22+
title: "Remix - A Full Stack Framework Built on Web APIs",
23+
description:
24+
"Remix 3 is under active development. Remix is a batteries-included, ultra-productive, zero dependency framework ready to use in a model-first world.",
25+
siteUrl,
26+
});
2527
}
2628

2729
export const headers: HeadersFunction = () => {

0 commit comments

Comments
 (0)