Skip to content

Commit 2b99521

Browse files
committed
fix home page title
1 parent 86e5920 commit 2b99521

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8" />
55
<link rel="icon" type="image/x-icon" href="/favicon.ico">
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Home | LNReader</title>
7+
<title>LNReader</title>
88
<meta name="description" content="Discover and read light novels, novels and more - easier than ever on your Android device."/>
99
<meta property="og:title" content="LNReader"/>
1010
<meta property="og:image" content="https://lnreader.github.io/icon.png" />

src/components/Layout/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default function Layout({
2222
if (route) {
2323
document.title = route.title;
2424
} else {
25-
document.title = "Home | LNReader";
25+
document.title = "LNReader";
2626
}
2727
}, [location.pathname]);
2828
return (

0 commit comments

Comments
 (0)