diff --git a/app/assets/stylesheets/components/_header-notice.scss b/app/assets/stylesheets/components/_header-notice.scss
new file mode 100644
index 000000000..61c8a6e55
--- /dev/null
+++ b/app/assets/stylesheets/components/_header-notice.scss
@@ -0,0 +1,32 @@
+.app-c-header-notice {
+ margin-bottom: govuk-spacing(8);
+}
+
+.app-c-header-notice__header {
+ background-color: govuk-colour("black");
+ padding: govuk-spacing(4);
+}
+
+.app-c-header-notice__title {
+ @extend %govuk-heading-m;
+ color: govuk-colour("white");
+ margin: 0;
+}
+
+.app-c-header-notice__content {
+ border: $govuk-border-width solid govuk-colour("black");
+ padding: govuk-spacing(4);
+}
+
+.app-c-header-notice__list {
+ margin-bottom: 0;
+}
+
+.app-c-header-notice__link-intro {
+ margin-bottom: govuk-spacing(1);
+}
+
+.app-c-header-notice__link {
+ @extend %govuk-link;
+ font-weight: bold;
+}
diff --git a/app/presenters/content_item/no_deal_notice.rb b/app/presenters/content_item/no_deal_notice.rb
new file mode 100644
index 000000000..b2914936c
--- /dev/null
+++ b/app/presenters/content_item/no_deal_notice.rb
@@ -0,0 +1,55 @@
+module ContentItem
+ module NoDealNotice
+ include ActionView::Helpers::TagHelper
+ include ActionView::Helpers::UrlHelper
+ include ActionView::Context
+
+ def has_no_deal_notice?
+ no_deal_notice.present?
+ end
+
+ def no_deal_notice_component
+ if has_no_deal_notice?
+ {
+ title: no_deal_notice_title,
+ description: no_deal_notice_description,
+ link_intro: no_deal_notice_link_intro,
+ links: no_deal_links,
+ }
+ end
+ end
+
+ private
+
+ def no_deal_notice
+ content_item.dig("details", "brexit_no_deal_notice")
+ end
+
+ def no_deal_notice_title
+ "The UK has left the EU"
+ end
+
+ def no_deal_notice_description
+ "This page tells you what you will need to do from January 2021. Follow the current information for living, working, travelling, and doing business in the UK and EU until then."
+ end
+
+ def no_deal_notice_link_intro
+ "For current information, read: "
+ end
+
+ def no_deal_links
+ no_deal_notice.map do |link|
+ {
+ title: link["title"],
+ href: link["href"],
+ data_attributes: {
+ "module": "track-click",
+ "track-category": "no_deal_notice",
+ "track-action": link["href"],
+ "track-label": link["title"],
+ },
+ }
+ end
+ end
+ end
+end
diff --git a/app/presenters/content_item_presenter.rb b/app/presenters/content_item_presenter.rb
index 35da16732..7c18a4c57 100644
--- a/app/presenters/content_item_presenter.rb
+++ b/app/presenters/content_item_presenter.rb
@@ -1,5 +1,6 @@
class ContentItemPresenter
include ContentItem::Withdrawable
+ include ContentItem::NoDealNotice
include ApplicationHelper
attr_reader :content_item,
diff --git a/app/views/components/_header-notice.html.erb b/app/views/components/_header-notice.html.erb
new file mode 100644
index 000000000..d77da2fcf
--- /dev/null
+++ b/app/views/components/_header-notice.html.erb
@@ -0,0 +1,30 @@
+<%
+ title ||= false
+ description ||= false
+ link_intro ||= false
+ links ||= []
+%>
+<% if title && description %>
+ <%= description %>
+ <% if link_intro %><%= link_intro %><% end %>
+ <%= link_to(links[0][:title], links[0][:href], data: links[0][:data_attributes], class: "app-c-header-notice__link") %>
+ <%= link_intro %><%= title %>
+
+ <% links.each do |link| %>
+
+ <% end %>
+