docusaurus build
This commit is contained in:
@@ -6,5 +6,5 @@
|
||||
2: Patch oder Hotfix (Bugfixes oder kleine Änderungen).
|
||||
|
||||
*/
|
||||
const webVersion = "1.6.351";
|
||||
const webVersion = "1.6.352";
|
||||
export default webVersion;
|
||||
|
||||
@@ -5,7 +5,7 @@ Willkommen zur Benutzerhilfe der CPLv4.0 Weboberfläche. Diese Dokumentation ric
|
||||
## 📅 Seitenübersicht
|
||||
|
||||
- [Übersicht / dashboard](uebersicht.md)
|
||||
- [Kabelüberwachung](kabelueberwachung.md)
|
||||
- [Kabelüberwachung](kabelueberwachung)
|
||||
- [Digitale Eingänge / Meldungseingänge](digitale-eingaenge.md)
|
||||
- [Digitale Ausgänge / Schaltausgänge](digitale-ausgaenge.md)
|
||||
- [Analoge Eingänge / Messüberwachung](analoge-eingaenge.md)
|
||||
|
||||
@@ -55,7 +55,7 @@ const config: Config = {
|
||||
},
|
||||
{
|
||||
label: "Kabelüberwachung",
|
||||
to: "/kabelueberwachung",
|
||||
to: "/docs/kabelueberwachung",
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
@@ -1,40 +1,34 @@
|
||||
import type {ReactNode} from 'react';
|
||||
import clsx from 'clsx';
|
||||
import Link from '@docusaurus/Link';
|
||||
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
|
||||
import Layout from '@theme/Layout';
|
||||
import HomepageFeatures from '@site/src/components/HomepageFeatures';
|
||||
import Heading from '@theme/Heading';
|
||||
import type { ReactNode } from "react";
|
||||
import clsx from "clsx";
|
||||
import Link from "@docusaurus/Link";
|
||||
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 styles from "./index.module.css";
|
||||
|
||||
function HomepageHeader() {
|
||||
const {siteConfig} = useDocusaurusContext();
|
||||
const { siteConfig } = useDocusaurusContext();
|
||||
return (
|
||||
<header className={clsx('hero hero--primary', styles.heroBanner)}>
|
||||
<header className={clsx("hero hero--primary", styles.heroBanner)}>
|
||||
<div className="container">
|
||||
<Heading as="h1" className="hero__title">
|
||||
{siteConfig.title}
|
||||
</Heading>
|
||||
<p className="hero__subtitle">{siteConfig.tagline}</p>
|
||||
<div className={styles.buttons}>
|
||||
<Link
|
||||
className="button button--secondary button--lg"
|
||||
to="/docs/intro">
|
||||
Docusaurus Tutorial - 5min ⏱️
|
||||
</Link>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
);
|
||||
}
|
||||
|
||||
export default function Home(): ReactNode {
|
||||
const {siteConfig} = useDocusaurusContext();
|
||||
const { siteConfig } = useDocusaurusContext();
|
||||
return (
|
||||
<Layout
|
||||
title={`Hello from ${siteConfig.title}`}
|
||||
description="Description will go into a meta tag in <head />">
|
||||
description="Description will go into a meta tag in <head />"
|
||||
>
|
||||
<HomepageHeader />
|
||||
<main>
|
||||
<HomepageFeatures />
|
||||
|
||||
Reference in New Issue
Block a user