Skip to content

Commit 9a8438a

Browse files
authored
fix: fix landing page title (#54)
1 parent 118d7fe commit 9a8438a

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

docusaurus.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { tailwindPlugin } from "./plugins/tailwind";
55
import { svgFixDuplicateIdsPlugin } from "./plugins/svg-fix";
66

77
const config: Config = {
8-
title: "Testplane Docs",
8+
title: "Testplane",
99
tagline: "Testplane is a modern end-to-end testing framework.",
1010
favicon: "img/favicon.ico",
1111

src/pages/index.tsx

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
1-
import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
21
import Layout from "@theme/Layout";
32
import { LandingPage } from "@site/src/components/pages/LandingPage";
43

54
export default function Home() {
6-
const { siteConfig } = useDocusaurusContext();
7-
85
return (
96
<Layout
10-
title={siteConfig.title}
11-
description="Testplane is a modern end-to-end testing framework"
7+
title={"Fast, scalable and robust end-to-end web testing solution"}
8+
description="A battle-hardened framework for creating tests at any scale and any browser. Get no-code, component, end-to-end and visual tests out of the box."
129
>
1310
<LandingPage />
1411
</Layout>

0 commit comments

Comments
 (0)