Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
merge main
  • Loading branch information
trigaten committed Dec 3, 2023
2 parents 4d6de8d + d400568 commit 8e8ac3b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 14 deletions.
4 changes: 2 additions & 2 deletions src/theme/DocItem/Footer/course.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default function Course({ src, srcset, name, desc, isPro, special, url, p
{/* <div style={{height: 50}}>
{ special ?<OpenAIBadge/>: null}
</div> */}
<Lessons percent={percent} count={count} isPro={false} />
<Lessons percent={percent} count={count} isPro={percent > 50} />
</div>
</div>
<div></div>
Expand Down Expand Up @@ -66,7 +66,7 @@ function PriceBadge({isPro}){


function Lessons({isPro, percent, count}){
const color = '#ffc081'
const color = percent > 60 ? '#ff465c': '#ffc081'
return <div style={{display: 'flex', gap: 12, marginTop: '20px'}}>
<div style={{color}}>{isPro ? 'Advanced' : 'Beginner'}</div>
<div style={{
Expand Down
25 changes: 13 additions & 12 deletions src/theme/DocItem/Footer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,7 @@ import styles from "./styles.module.css";
import Course from './course';
import SignUp from './signup';

const courses = [{
name: 'ChatGPT for Everyone',
desc: "Learn about ChatGPT, one of the most advanced AI systems available today, and dive into the world of Generative AI.",
special: true,
isPro: false,
percent: 30,
count: 15,
url: 'https://learn-prompting.webflow.io/course-chat-gpt-for-everyone',
src: "https://assets-global.website-files.com/655b6730173650f3f66a0f98/655b6c0666126b34d261c42f_ChatGPT%20for%20Everyone%20-%20Course%20Page.png",
srcset: "",
},
const courses = [
{
name: 'Intro to Prompt Engineering',
desc: 'Learn about the basics of Prompt Engineering, and how to effectively communicate with AI.',
Expand All @@ -30,6 +20,17 @@ const courses = [{
src: "https://assets-global.website-files.com/655b6730173650f3f66a0f98/655e35962450a3b5e5be1276_A%20blue%20and%20pink%20abstract%20background.jpg",
srcset: "",
},
{
name: 'Advanced Prompt Engineering',
desc: "Learn how to craft Complex and Efficient Prompts for Sophisticated AI Applications.",
special: true,
isPro: true,
percent: 100,
count: 14,
url: 'https://learn-prompting.webflow.io/courses/advanced-prompt-engineering',
src: "https://assets-global.website-files.com/655b6730173650f3f66a0f98/655d3c311a302329f920daa4_Abstract%20Blue%20Pink%20Wavy%20(2)..jpg",
srcset: "",
},
]


Expand Down Expand Up @@ -100,7 +101,7 @@ export default function DocItemFooter() {
Want to learn more?</h2>
<div className={styles.courses}>
{/* for oai */}
{courses.filter(c => c).slice(1, 2).map(c => <Course key={c.name} src={c.src} srcset={c.srcset} {...c}/>)}
{courses.filter(c => c).slice(0, 2).map(c => <Course key={c.name} src={c.src} srcset={c.srcset} {...c}/>)}
</div>

<br />
Expand Down

1 comment on commit 8e8ac3b

@vercel
Copy link

@vercel vercel bot commented on 8e8ac3b Dec 3, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

learn-prompting – ./

learn-prompting-trigaten.vercel.app
learn-prompting-git-main-trigaten.vercel.app
learn-prompting.vercel.app

Please sign in to comment.