-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathindex.tsx
More file actions
56 lines (53 loc) · 1.71 KB
/
index.tsx
File metadata and controls
56 lines (53 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import Link from "@docusaurus/Link";
import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
import Start from "@site/src/components/Start";
import { trackEvent } from "@site/src/providers/analytics.providers";
import clsx from "clsx";
import { useRef } from "react";
import styles from "./styles.module.scss";
export default function Hero(): JSX.Element {
const el = useRef(null);
const { siteConfig } = useDocusaurusContext();
return (
<article className={clsx("hero", styles.heroBanner)}>
<div className={`${styles.container}`}>
<h1
className={`hero__title ${styles.title} ${styles.item} ${styles.bold}`}
>
Open-Source SDK
<br />
for building apps
</h1>
<p className={`${styles.item} ${styles.subtitle}`}>
Juno is a full-stack platform to develop, deploy, and run apps in WASM
containers with zero DevOps.
</p>
<p className={`${styles.item}`}></p>
<div className={`${styles.item} ${styles.actions}`}>
<Start position="hero">Start Building</Start>
<Link
className="button button--juno"
to="/docs/intro"
onClick={() =>
trackEvent({
name: "documentation",
siteConfig
})
}
>
Documentation
</Link>
<div className={styles.ai}>
<a href="/llms-full.txt" target="_blank" rel="noopener noreferrer">
llms-full.txt
</a>
·
<a href="/docs/guides/ai" className={styles.llms}>
AI tools
</a>
</div>
</div>
</div>
</article>
);
}