Skip to content

Commit b29193d

Browse files
committed
Move readme (former landing page) into readme file
1 parent d3fa72d commit b29193d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/app/home.tsx renamed to src/app/readme.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { AppGitHubReadme } from "@/components/libresplit/AppGitHubReadme";
22

3-
export function Home() {
3+
export function Readme() {
44
return (
55
<div>
66
<AppGitHubReadme />

src/router.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import { Converter } from "./app/converter";
2-
import { Home } from "./app/home";
2+
import { Readme } from "./app/readme";
33
import { Route, Routes } from "react-router";
44

55
export default function AppRouter() {
66
return (
77
<Routes>
8-
<Route path="/" element={<Home />} />
8+
<Route path="/" element={<Readme />} />
99
<Route path="/converter" element={<Converter />} />
1010
</Routes>
1111
);

0 commit comments

Comments
 (0)