Skip to content

Commit 2c99c5d

Browse files
Remove Remix references in basic template (#12089)
1 parent 3d3357f commit 2c99c5d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

templates/basic/app/routes/home.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import type { MetaFunction } from "react-router";
22

33
export const meta: MetaFunction = () => {
44
return [
5-
{ title: "New Remix App" },
6-
{ name: "description", content: "Welcome to Remix!" },
5+
{ title: "New React Router App" },
6+
{ name: "description", content: "Welcome to React Router!" },
77
];
88
};
99

@@ -18,12 +18,12 @@ export default function Index() {
1818
<div className="w-[450px] max-w-[100vw] p-4 aspect-[605/347]">
1919
<img
2020
src="/logo-light.svg"
21-
alt="Remix"
21+
alt="React Router"
2222
className="block w-full dark:hidden"
2323
/>
2424
<img
2525
src="/logo-dark.svg"
26-
alt="Remix"
26+
alt="React Router"
2727
className="hidden w-full dark:block"
2828
/>
2929
</div>

0 commit comments

Comments
 (0)