File tree Expand file tree Collapse file tree 4 files changed +10
-20
lines changed Expand file tree Collapse file tree 4 files changed +10
-20
lines changed Original file line number Diff line number Diff line change 51
51
git config --global user.name "gh-actions"
52
52
cd documentation
53
53
yarn install --frozen-lockfile
54
+ rm -rf .docusaurus/
54
55
yarn build
55
56
yarn deploy
Original file line number Diff line number Diff line change 1
1
import React from 'react' ;
2
2
import styles from './HomepageFeatures.module.css' ;
3
3
import useBaseUrl from '@docusaurus/useBaseUrl' ;
4
+ import clsx from 'clsx'
4
5
5
6
export default function HomepageFeatures ( ) {
6
7
return (
7
8
< >
8
9
< h1 className = "text--center text--primary" > What's in the Box ? 📦</ h1 >
9
10
< section >
10
11
< div className = "container" >
11
- < div className = { styles . featuresRow } >
12
- < div className = " col--6" >
12
+ < div className = { clsx ( 'row row--align-center featureRow' ) } >
13
+ < div className = { clsx ( ' col col --6 text--right' ) } >
13
14
< img src = { useBaseUrl ( '/img/Red.png' ) } alt = "mockups" className = { styles . mockups } />
14
15
</ div >
15
- < div className = " col--6" >
16
+ < div className = { clsx ( ' col col --6 ' ) } >
16
17
< ul className = "features" >
17
18
< li className = "text--bold text--secondary text--uppercase text" > < h3 > Internationalization 🌍</ h3 > </ li >
18
19
< li className = "text--bold text--secondary text--uppercase" > < h3 > Dark mode and multi-theming 🌗 </ h3 > </ li >
Original file line number Diff line number Diff line change @@ -23,13 +23,11 @@ function HomepageHeader() {
23
23
< div className = "container" >
24
24
< h1 className = "hero__title" > { siteConfig . title } </ h1 >
25
25
< p className = "hero__subtitle" > { siteConfig . tagline } </ p >
26
- < div className = { styles . buttons } >
27
- < Link
28
- className = "button button--lg"
29
- to = "/docs/Introduction" >
30
- Getting started 🚀
31
- </ Link >
32
- </ div >
26
+ < Link
27
+ className = "button button--outline button--lg"
28
+ to = "/docs/Introduction" >
29
+ Getting started 🚀
30
+ </ Link >
33
31
</ div >
34
32
</ header >
35
33
) ;
Original file line number Diff line number Diff line change 17
17
padding : 2rem ;
18
18
}
19
19
}
20
-
21
- .buttons {
22
- display : flex;
23
- align-items : center;
24
- justify-content : center;
25
- }
26
-
27
- .getStartedButton {
28
- --ifm-button-color : var (--ifm-heading-color );
29
- }
You can’t perform that action at this time.
0 commit comments