Skip to content

Commit a84c1eb

Browse files
authored
Add Logo to docs (#7)
1 parent b6da6b2 commit a84c1eb

File tree

4 files changed

+186
-0
lines changed

4 files changed

+186
-0
lines changed

docs/src/pages/index.tsx

+22
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ import styles from './styles.module.css';
33
import Layout from '@theme/Layout';
44
import HomepageStartScreen from '@site/src/components/Hero/StartScreen';
55
import { HireUsSection } from '@swmansion/t-rex-ui';
6+
import LogoHero from '@site/static/img/logo-hero.svg';
7+
import HomepageButton from '@site/src/components/HomepageButton';
68

79
function Home() {
810
return (
@@ -12,6 +14,26 @@ function Home() {
1214
<div className={styles.container}>
1315
<HomepageStartScreen />
1416
</div>
17+
<div
18+
style={{
19+
marginTop: '300px',
20+
marginBottom: '350px',
21+
gap: '30px',
22+
display: 'flex',
23+
flexDirection: 'column',
24+
justifyContent: 'center',
25+
alignItems: 'center',
26+
}}
27+
>
28+
<LogoHero />
29+
<h2>This site is under development</h2>
30+
<a href="/react-native-executorch/docs/fundamentals/getting-started">
31+
<HomepageButton
32+
href="/react-native-executorch/docs/fundamentals/getting-started"
33+
title="Checkout the docs"
34+
/>
35+
</a>
36+
</div>
1537
<div className={styles.container}>
1638
<HireUsSection
1739
href={

docs/static/img/logo-hero.svg

+34
Loading

0 commit comments

Comments
 (0)