Skip to content

styles(): Add developer experts cta section to intro/next page #2908

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions docs/intro/next.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ title: Next Steps
import DocsCard from '@components/global/DocsCard';
import DocsCards from '@components/global/DocsCards';

import DeveloperExperts from '@components/page/intro/next/DeveloperExperts';

## Build Your First App

Pick the JavaScript framework you plan to use while building your Ionic app:
Expand All @@ -30,3 +32,5 @@ Pick the JavaScript framework you plan to use while building your Ionic app:
<p>A complete guide to get you up to speed with the basics of building Ionic apps with Vue.</p>
</DocsCard>
</DocsCards>

<DeveloperExperts />
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
.developerExperts {
background-color: var(--c-indigo-10);

padding: 2.5rem;

border-radius: 16px;

margin-block-start: 1.35rem;

header {
max-width: 29rem;
}

&Title {
margin-block-end: 0.5rem;
}

&Description {
margin-block-end: 2.5rem;

line-height: 1.6 !important;

color: var(--c-indigo-90);
}

&Links {
max-width: 38.313rem;

display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 1rem;

a {
font-weight: 600;
}
}
}
29 changes: 29 additions & 0 deletions src/components/page/intro/next/DeveloperExperts/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import React from 'react';
import styles from './index.module.scss';

export default function DeveloperExperts() {
return (
<div className={styles.developerExperts}>
<header>
<h3 className={styles.developerExpertsTitle}>Featured Ionic Developer Expert Projects</h3>
<p className={styles.developerExpertsDescription}>
Extend your knowledge of Ionic from premium educational materials made by community members.
</p>
</header>
<div className={styles.developerExpertsLinks}>
<a href="https://ionicacademy.com" target="_blank" rel="noopener noreferrer">
Ionic Academy →
</a>
<a href="https://www.joshmorony.com/elite" target="_blank" rel="noopener noreferrer">
Elite Ionic →
</a>
<a href="https://ionicthemes.com" target="_blank" rel="noopener noreferrer">
Ionic Themes →
</a>
<a href="https://ionicreacthub.com" target="_blank" rel="noopener noreferrer">
Ionic React Hub →
</a>
</div>
</div>
);
}
4 changes: 4 additions & 0 deletions versioned_docs/version-v5/intro/next.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import DocsCard from '@components/global/DocsCard';
import DocsCards from '@components/global/DocsCards';

import DeveloperExperts from '@components/page/intro/next/DeveloperExperts';

# Next Steps

## Build Your First App
Expand All @@ -20,3 +22,5 @@ Pick the JavaScript framework you plan to use while building your Ionic app:
<p>A complete guide to get you up to speed with the basics of building Ionic apps with Vue.</p>
</DocsCard>
</DocsCards>

<DeveloperExperts />
4 changes: 4 additions & 0 deletions versioned_docs/version-v6/intro/next.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ title: Next Steps
import DocsCard from '@components/global/DocsCard';
import DocsCards from '@components/global/DocsCards';

import DeveloperExperts from '@components/page/intro/next/DeveloperExperts';

## Build Your First App

Pick the JavaScript framework you plan to use while building your Ionic app:
Expand All @@ -30,3 +32,5 @@ Pick the JavaScript framework you plan to use while building your Ionic app:
<p>A complete guide to get you up to speed with the basics of building Ionic apps with Vue.</p>
</DocsCard>
</DocsCards>

<DeveloperExperts />