diff --git a/CHANGELOG.md b/CHANGELOG.md index f47ce2a..4e40416 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,21 @@ Format: [Keep a Changelog 1.1.0](https://keepachangelog.com/en/1.1.0/) — versi ## [Unreleased] +### Changed — Banner moved to About page (side-by-side intro) +- **Banner image removed from the Create-Note page.** It was the + first thing under the page title and took up significant vertical + space before the user even saw the textarea. The Create-Note page + is for *doing*, not for *reading-about*. +- **Banner added to the top of the About page** in a new + side-by-side row: banner image on the left (capped at 320px wide, + not full-bleed), and a short intro paragraph + "Go to WP Notes →" + CTA on the right. Stacks vertically on narrow screens via + `flex-wrap`. Lives inside its own `.wp-notes-about-intro` block so + it doesn't interact with the rest of the About page's nested + toggles. +- **`.wp-notes-header-banner` / `.wp-notes-banner-img` CSS removed** + from `wp-notes-styles.php` — no longer used. + ### Changed — Tier 1 UX cleanup Single pass through `wp_notes_page_callback()` to remove the layout debt that had built up over previous releases. Functionality is diff --git a/inc/wp-notes-about.php b/inc/wp-notes-about.php index 21128f5..c0088df 100644 --- a/inc/wp-notes-about.php +++ b/inc/wp-notes-about.php @@ -6,10 +6,58 @@ */ function wp_notes_about_page() { ?> + +
+ WP Notes is a lightweight task & logbook plugin for WordPress. Log your daily work, mark tasks as done, and keep a tidy history right inside the dashboard — perfect for freelancers showing clients what's been delivered.
++ Go to WP Notes → +
+WP Notes is your task management solution for WordPress. Keep track of your todos, collaborate with team members, and never lose important notes.
diff --git a/inc/wp-notes-styles.php b/inc/wp-notes-styles.php index 734eb64..0b2f2fb 100644 --- a/inc/wp-notes-styles.php +++ b/inc/wp-notes-styles.php @@ -11,18 +11,6 @@ if (!defined('ABSPATH')) { function wp_notes_admin_styles() { ?>