| @@ -1,6 +1,7 @@ | ||
| 1 | 1 | import { __, sprintf } from '@wordpress/i18n' |
| 2 | 2 | import React, { useState } from 'react' |
| 3 | +import { ScreenMetaSlot } from '../common/ScreenMetaSlot' | |
| 3 | 4 | import { Toolbar } from '../common/Toolbar' |
| 4 | 5 | import { Changelog } from './Changelog' |
| 5 | 6 | import type { ImageLinkSchema } from '../../types/schema/WelcomeSchema' |
| 6 | 7 | |
| @@ -99,12 +100,18 @@ | ||
| 99 | 100 | |
| 100 | 101 | export const WelcomeMenu = () => |
| 101 | 102 | <> |
| 102 | 103 | <Toolbar /> |
| 103 | - <div className="code-snippets-welcome"> | |
| 104 | + | |
| 105 | + <ScreenMetaSlot /> | |
| 106 | + | |
| 107 | + <div className="snippets-page-header"> | |
| 104 | 108 | <h1>{__('Resources and Updates', 'code-snippets')}</h1> |
| 109 | + </div> | |
| 105 | 110 | |
| 106 | - <hr className="wp-header-end" /> | |
| 111 | + <hr className="wp-header-end" /> | |
| 112 | + | |
| 113 | + <div className="code-snippets-welcome"> | |
| 107 | 114 | |
| 108 | 115 | <div className="code-snippets-updates"> |
| 109 | 116 | <HeroImage /> |
| 110 | 117 | <Changelog /> |