Change name

This commit is contained in:
Takeshi Kimata
2024-06-02 14:35:34 +09:00
parent d54b2a5950
commit 755379ae0f
29 changed files with 76 additions and 91 deletions

View File

@@ -1,53 +1,43 @@
import clsx from "clsx";
import Heading from "@theme/Heading";
import styles from "./styles.module.css";
import clsx from 'clsx';
import Heading from '@theme/Heading';
import styles from './styles.module.css';
const FeatureList = [
{
title: "Open Source",
Svg: require("@site/static/img/certificate-svgrepo-com.svg").default,
title: 'Open Source',
Svg: require('@site/static/img/certificate-svgrepo-com.svg').default,
description: (
<>
TestPlat is free and open source. The application can be self-hosted. It
can be deployed in environments with strict security requirements.
LandTCMS is free and open source. The application can be self-hosted. It can be deployed in environments with
strict security requirements.
</>
),
},
{
title: "Organize Test Cases",
Svg: require("@site/static/img/chemical-svgrepo-com.svg").default,
title: 'Organize Test Cases',
Svg: require('@site/static/img/chemical-svgrepo-com.svg').default,
description: <>Test cases can be organized by projects and folders. Modern UI framework makes them fast.</>,
},
{
title: 'Usability',
Svg: require('@site/static/img/statistics-svgrepo-com.svg').default,
description: (
<>
Test cases can be organized by projects and folders. Modern UI framework
makes them fast.
The defined test cases can be used over and over again in test runs. The status of test runs and projects can be
viewed graphically.
</>
),
},
{
title: "Usability",
Svg: require("@site/static/img/statistics-svgrepo-com.svg").default,
description: (
<>
The defined test cases can be used over and over again in test runs. The
status of test runs and projects can be viewed graphically.
</>
),
},
{
title: "Universal",
Svg: require("@site/static/img/question-and-answer-svgrepo-com.svg").default,
description: (
<>
Multi language support and dark theme allow anyone to use the system
without any inconvenience.
</>
),
title: 'Universal',
Svg: require('@site/static/img/question-and-answer-svgrepo-com.svg').default,
description: <>Multi language support and dark theme allow anyone to use the system without any inconvenience.</>,
},
];
function Feature({ Svg, title, description }) {
return (
<div className={clsx("col col--3")}>
<div className={clsx('col col--3')}>
<div className="text--center">
<Svg className={styles.featureSvg} role="img" />
</div>

View File

@@ -1,26 +1,21 @@
import clsx from "clsx";
import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
import Layout from "@theme/Layout";
import HomepageFeatures from "@site/src/components/HomepageFeatures";
import clsx from 'clsx';
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
import Layout from '@theme/Layout';
import HomepageFeatures from '@site/src/components/HomepageFeatures';
import Heading from "@theme/Heading";
import styles from "./index.module.css";
import Heading from '@theme/Heading';
import styles from './index.module.css';
export default function Home() {
const { siteConfig } = useDocusaurusContext();
return (
<Layout
title={`Hello from ${siteConfig.title}`}
description="Description will go into a meta tag in <head />"
>
<header className={clsx("hero hero--primary", styles.heroBanner)}>
<Layout title={`Hello from ${siteConfig.title}`} description="Description will go into a meta tag in <head />">
<header className={clsx('hero hero--primary', styles.heroBanner)}>
<div className="container">
<Heading as="h1" className="hero__title">
TestPlat
LandTCMS
</Heading>
<p className="hero__subtitle">
Open Source Test Case Management Web Application
</p>
<p className="hero__subtitle">Open Source Test Case Management Web Application</p>
Integrate and manage all your software testing.
</div>
</header>