diff --git a/app/views/content/home/_salaries-banner.html.erb b/app/views/content/home/_salaries-banner.html.erb
index 1008298706..ce5f9f5dee 100644
--- a/app/views/content/home/_salaries-banner.html.erb
+++ b/app/views/content/home/_salaries-banner.html.erb
@@ -1,6 +1,6 @@
<%= render CallsToAction::SimpleComponent.new(icon: "icon-money") do %>
-
Earn a minimum of £30k a year
+
Earn a minimum of <%= v :salaries_starting_minshortened %> a year
All qualified teachers get a minimum starting salary of <%= v :salaries_starting_minshortened %> (or higher in London), so it pays to do what you love.
And with lots of opportunities to progress, you could earn over <%= v :salaries_fiveyears_maxshortened %> within 5 years.
<%= link_to("Find out more about teacher pay", page_path("life-as-a-teacher/pay-and-benefits/teacher-pay")) %>.
diff --git a/spec/support/page_testing_support.rb b/spec/support/page_testing_support.rb
index 29153f7b2d..590823179d 100644
--- a/spec/support/page_testing_support.rb
+++ b/spec/support/page_testing_support.rb
@@ -111,5 +111,5 @@ def build_url(host, link)
end
class MonetaryChecker
- MONEY_REGEXP = /([$£€]\d+(,\d{3})*([.,]\d{1,2}p?)?k?)/m
+ MONEY_REGEXP = /(([$£€]|$|£|€|$|£|€)\d+(,\d{3})*([.,]\d{1,2}p?)?k?)/m
end