File tree 5 files changed +80
-0
lines changed
src/components/page/intro/next/DeveloperExperts
5 files changed +80
-0
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ title: Next Steps
13
13
import DocsCard from '@components/global /DocsCard';
14
14
import DocsCards from '@components/global /DocsCards';
15
15
16
+ import DeveloperExperts from '@components/page /intro/next/DeveloperExperts';
17
+
16
18
## Build Your First App
17
19
18
20
Pick the JavaScript framework you plan to use while building your Ionic app:
@@ -30,3 +32,5 @@ Pick the JavaScript framework you plan to use while building your Ionic app:
30
32
<p>A complete guide to get you up to speed with the basics of building Ionic apps with Vue.</p>
31
33
</DocsCard >
32
34
</DocsCards >
35
+
36
+ <DeveloperExperts />
Original file line number Diff line number Diff line change
1
+ .developerExperts {
2
+ background-color : var (--c-indigo-10 );
3
+
4
+ padding : 2.5rem ;
5
+
6
+ border-radius : 16px ;
7
+
8
+ margin-block-start : 1.35rem ;
9
+
10
+ header {
11
+ max-width : 29rem ;
12
+ }
13
+
14
+ & Title {
15
+ margin-block-end : 0.5rem ;
16
+ }
17
+
18
+ & Description {
19
+ margin-block-end : 2.5rem ;
20
+
21
+ line-height : 1.6 !important ;
22
+
23
+ color : var (--c-indigo-90 );
24
+ }
25
+
26
+ & Links {
27
+ max-width : 38.313rem ;
28
+
29
+ display : flex ;
30
+ flex-wrap : wrap ;
31
+ align-items : center ;
32
+ justify-content : space-between ;
33
+ gap : 1rem ;
34
+
35
+ a {
36
+ font-weight : 600 ;
37
+ }
38
+ }
39
+ }
Original file line number Diff line number Diff line change
1
+ import React from 'react' ;
2
+ import styles from './index.module.scss' ;
3
+
4
+ export default function DeveloperExperts ( ) {
5
+ return (
6
+ < div className = { styles . developerExperts } >
7
+ < header >
8
+ < h3 className = { styles . developerExpertsTitle } > Featured Ionic Developer Expert Projects</ h3 >
9
+ < p className = { styles . developerExpertsDescription } >
10
+ Extend your knowledge of Ionic from premium educational materials made by community members.
11
+ </ p >
12
+ </ header >
13
+ < div className = { styles . developerExpertsLinks } >
14
+ < a href = "https://ionicacademy.com" target = "_blank" rel = "noopener noreferrer" >
15
+ Ionic Academy →
16
+ </ a >
17
+ < a href = "https://www.joshmorony.com/elite" target = "_blank" rel = "noopener noreferrer" >
18
+ Elite Ionic →
19
+ </ a >
20
+ < a href = "https://ionicthemes.com" target = "_blank" rel = "noopener noreferrer" >
21
+ Ionic Themes →
22
+ </ a >
23
+ < a href = "https://ionicreacthub.com" target = "_blank" rel = "noopener noreferrer" >
24
+ Ionic React Hub →
25
+ </ a >
26
+ </ div >
27
+ </ div >
28
+ ) ;
29
+ }
Original file line number Diff line number Diff line change 1
1
import DocsCard from '@components/global /DocsCard';
2
2
import DocsCards from '@components/global /DocsCards';
3
3
4
+ import DeveloperExperts from '@components/page /intro/next/DeveloperExperts';
5
+
4
6
# Next Steps
5
7
6
8
## Build Your First App
@@ -20,3 +22,5 @@ Pick the JavaScript framework you plan to use while building your Ionic app:
20
22
<p>A complete guide to get you up to speed with the basics of building Ionic apps with Vue.</p>
21
23
</DocsCard >
22
24
</DocsCards >
25
+
26
+ <DeveloperExperts />
Original file line number Diff line number Diff line change @@ -13,6 +13,8 @@ title: Next Steps
13
13
import DocsCard from '@components/global /DocsCard';
14
14
import DocsCards from '@components/global /DocsCards';
15
15
16
+ import DeveloperExperts from '@components/page /intro/next/DeveloperExperts';
17
+
16
18
## Build Your First App
17
19
18
20
Pick the JavaScript framework you plan to use while building your Ionic app:
@@ -30,3 +32,5 @@ Pick the JavaScript framework you plan to use while building your Ionic app:
30
32
<p>A complete guide to get you up to speed with the basics of building Ionic apps with Vue.</p>
31
33
</DocsCard >
32
34
</DocsCards >
35
+
36
+ <DeveloperExperts />
You can’t perform that action at this time.
0 commit comments