f6436d0c83
Reviewed-on: #5 Co-authored-by: Arswarog <arswarog@yandex.ru> Co-committed-by: Arswarog <arswarog@yandex.ru>
48 lines
1.4 KiB
TypeScript
48 lines
1.4 KiB
TypeScript
import Link from '@docusaurus/Link';
|
|
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
|
|
import Heading from '@theme/Heading';
|
|
import Layout from '@theme/Layout';
|
|
import clsx from 'clsx';
|
|
import type { ReactNode } from 'react';
|
|
|
|
import styles from './index.module.css';
|
|
|
|
function HomepageHeader() {
|
|
const { siteConfig } = useDocusaurusContext();
|
|
|
|
return (
|
|
<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"
|
|
>
|
|
Документация
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
);
|
|
}
|
|
|
|
export default function Home(): ReactNode {
|
|
const { siteConfig } = useDocusaurusContext();
|
|
|
|
return (
|
|
<Layout
|
|
title={`Hello from ${siteConfig.title}`}
|
|
description="Description will go into a meta tag in <head />"
|
|
>
|
|
<HomepageHeader />
|
|
</Layout>
|
|
);
|
|
}
|