mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
36 lines
1 KiB
TypeScript
36 lines
1 KiB
TypeScript
import Link from "@docusaurus/Link";
|
|
import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
|
|
import HomepageFeatures from "@site/src/components/Homepage";
|
|
import Layout from "@theme/Layout";
|
|
import clsx from "clsx";
|
|
import React 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">
|
|
<h1 className="hero__title">{siteConfig.title}</h1>
|
|
<p className="hero__subtitle">{siteConfig.tagline}</p>
|
|
<div className={styles.buttons}>
|
|
<Link className="button button--secondary button--lg" to="/docs">
|
|
Get started
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
);
|
|
}
|
|
|
|
export default function Home() {
|
|
return (
|
|
<Layout description="For Excalidraw contributors or those integrating the Excalidraw editor">
|
|
<HomepageHeader />
|
|
<main>
|
|
<HomepageFeatures />
|
|
</main>
|
|
</Layout>
|
|
);
|
|
}
|