-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.tsx
32 lines (30 loc) · 942 Bytes
/
index.tsx
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
import React from 'react';
import styles from './styles.module.css';
import HomepageButton from '@site/src/components/HomepageButton';
const StartScreen = () => {
return (
<section className={styles.hero}>
<div className={styles.heading}>
<div>
<h1 className={styles.headingLabel}>
<span>React Native</span>
<span>ExecuTorch</span>
</h1>
<h2 className={styles.subheadingLabel}>
Declarative way to run AI models in React Native on device, powered
by ExecuTorch.
</h2>
</div>
<div className={styles.lowerHeading}>
<div className={styles.buttonContainer}>
<HomepageButton
href="/react-native-executorch/docs/fundamentals/getting-started"
title="Get started"
/>
</div>
</div>
</div>
</section>
);
};
export default StartScreen;