Skip to content
3 changes: 3 additions & 0 deletions apps/studio/src/lib/get-localized-link.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ const DOCS_LINKS = {
docsSkills: {
en: 'https://developer.wordpress.com/docs/developer-tools/studio/agent-skills-wordpress-studio/',
},
docsStudioCode: {
en: 'https://developer.wordpress.com/docs/developer-tools/studio/studio-code/',
},
docsPhpRuntimes: {
en: 'https://developer.wordpress.com/docs/developer-tools/studio/php-runtimes/',
},
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import cliIllustration from 'src/modules/whats-new/assets/cli-illustration.svg';
import darkModeIllustration from 'src/modules/whats-new/assets/dark-mode-illustration.svg';
import nativePhpIllustration from 'src/modules/whats-new/assets/native-php-illustration.svg';
import phpMyAdminIllustration from 'src/modules/whats-new/assets/phpmyadmin-illustration.svg';
import studioCodeIllustration from 'src/modules/whats-new/assets/studio-code-illustration.svg';
import { useI18nLocale } from 'src/stores';

interface WhatsNewPage {
Expand Down Expand Up @@ -57,6 +58,14 @@ const PageContent = ( {
export default function WhatsNewModal( { showModal, onClose }: WhatsNewModalProps ) {
const locale = useI18nLocale();
const whatsNewPages: WhatsNewPage[] = [
{
image: studioCodeIllustration,
title: __( 'Studio Code helps you get it done' ),
description: __(
'From quick edits to new features, Studio Code helps you move faster by translating your ideas into working code.'
),
learnMoreUrl: getLocalizedLink( locale, 'docsStudioCode' ),
},
{
image: nativePhpIllustration,
title: __( 'Faster local sites with native PHP' ),
Expand Down