-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.tsx
48 lines (46 loc) · 1.44 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import React from 'react';
import styles from './styles.module.css';
import Layout from '@theme/Layout';
import HomepageStartScreen from '@site/src/components/Hero/StartScreen';
import { HireUsSection } from '@swmansion/t-rex-ui';
import LogoHero from '@site/static/img/logo-hero.svg';
import HomepageButton from '@site/src/components/HomepageButton';
function Home() {
return (
<Layout
title={`React Native ExecuTorch`}
description="Declarative way to run AI models in React Native on device, powered by ExecuTorch.">
<div className={styles.container}>
<HomepageStartScreen />
</div>
<div
style={{
marginTop: '300px',
marginBottom: '350px',
gap: '30px',
display: 'flex',
flexDirection: 'column',
justifyContent: 'center',
alignItems: 'center',
}}
>
<LogoHero />
<h2>This site is under development</h2>
<a href="/react-native-executorch/docs/fundamentals/getting-started">
<HomepageButton
href="/react-native-executorch/docs/fundamentals/getting-started"
title="Checkout the docs"
/>
</a>
</div>
<div className={styles.container}>
<HireUsSection
href={
'https://swmansion.com/contact/projects?utm_source=react-native-executorch&utm_medium=docs'
}
/>
</div>
</Layout>
);
}
export default Home;