Skip to content
Open
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
43 changes: 42 additions & 1 deletion src/data/platformPricing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,48 @@ export const platformPricing: Record<string, PricingTier[]> = {
ctaUrl: 'https://www.figma.com/pricing'
}
],

chatgpt: [
{
id: 'chatgpt-free',
key: 'free',
name: 'Free',
price: '$0',
billing: 'forever',
features: ['AI chat assistance', 'Idea generation', 'Basic coding help'],
ctaUrl: 'https://www.chat.openai.com'
},
{
id: 'chatgpt-plus',
key: 'paid',
name: 'Plus',
price: '$20',
billing: 'per month',
features: ['Advanced AI models', 'Faster Response', 'Enhanced coding support'],
ctaUrl: 'https://www.chat.openai.com'
},

],
notion: [
{
id: 'notion-free',
key: 'free',
name: 'Free',
price: '$0',
billing: 'forever',
features: ['Notes and docs', 'Project planning', 'Templates'],
ctaUrl: 'https://www.notion.so'
},
{
id: 'notion-plus',
key: 'paid',
name: 'Plus',
price: '$10',
billing: 'per user/month',
features: ['Unlimited blocks', 'Team collaboration', 'Advanced permissions'],
ctaUrl: 'https://www.notion.so/pricing'
},

],
'gemini-3': [
{
id: 'gemini-3-free',
Expand Down
Binary file added src/images/ChatGPT-Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/Notion-Logo.png.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
48 changes: 47 additions & 1 deletion src/pages/LearnPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ import githubCopilotLogo from '@/images/Github Copilot Logo.webp';
import claudeCodeLogo from '@/images/Claude Code Logo.webp';
import geminiLogo from '@/images/Gemini Logo.png';
import figmaLogo from '@/images/figma-logo.svg';
import chatgptLogo from '@/images/ChatGPT-Logo.png';
import notionLogo from '@/images/Notion-Logo.png.png';
import base44Logo from '@/images/base44-logo.png';
import emergentLogo from '@/images/Emergent Logo.jpg';
import grokLogo from '@/images/grok-icon.png';
Expand Down Expand Up @@ -510,7 +512,51 @@ const platformsRaw: Platform[] = [
}
]
},

//Chatgpt(new)
{
id: 'chatgpt',
name: 'ChatGPT',
description: 'An AI assistant that support idea generation, coding help, onboarding guidance, and beginner learning workflows.',
logo: chatgptLogo,
website: 'https://www.chat.openai.com',
docsUrl: 'https://help.openai.com',
features: ['AI Assistance', 'Prompting', 'Coding Help', 'Learning Support'],
difficulty: 'Beginner',
category: 'AI Tool',
tutorials: [
{
id: 'chatgpt-1',
title: 'Getting Started with ChatGPT',
description: 'Learn how to use prompt for onboarding, idea generation, and beginner support',
duration: '15 min',
difficulty: 'Beginner',
url: 'https://help.openai.com'
}
]
},
//Notion(New)
{
id: 'notion',
name: 'Notion',
description: 'A productivity and documentation platform for project planning, learning journals, and onboarding organization',
logo: notionLogo,
website: 'https://www.notion.so',
docsUrl: 'https://www.notion.so/help',
features: ['Documentation', 'Templates', 'Project Planning', 'Collaboration'],
difficulty: 'Beginner',
category: 'Productivity',
tutorials: [
{
id: 'notion-1',
title: 'Notion Basics',
description: 'Learn how to create pages, organize notes, and manage beginner projects',
duration: '10 min',
difficulty: 'Beginner',
url: 'https://www.notion.so/help'
}
]
},

// ✅ Webflow (marked NEW)
{
id: 'webflow',
Expand Down