Skip to content

Commit

Permalink
fix(ui): add markiezenhof subscribe url
Browse files Browse the repository at this point in the history
  • Loading branch information
RaneHyv committed Feb 8, 2024
1 parent 1d5abc7 commit c2fac18
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
5 changes: 4 additions & 1 deletion frontend/src/components/theme/Footer/NewsletterSubscribe.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/* eslint-disable jsx-a11y/anchor-is-valid */
import { defineMessages, injectIntl } from 'react-intl';

const messages = defineMessages({
Expand All @@ -11,6 +10,10 @@ const messages = defineMessages({
const NewsletterSubscribe = ({ intl }) => (
<div className="newsletter-subscribe">
<a
href={
'https://gemeente-bergen-op-zoom-markiezenhof.email-provider.eu/' +
'memberforms/subscribe/standalone/form/?a=kvlm5pg896&l=ccfiafesre'
}
target="_blank"
rel="noopener noreferrer"
className="newsletter-subscribe-link"
Expand Down
13 changes: 8 additions & 5 deletions frontend/theme/globals/site.variables
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,21 @@
@theme-color-red: #df0934;
@theme-color-light-red: #f1b0bc;
@theme-color-dark-blue: #103867;
@theme-color-light-blue: #88c5d8;
@theme-color-blue: #008da9;
@theme-color-orange: #fce602;
@theme-color-light-purple: #9789a5;
@theme-color-purple: #92278f;
@theme-color-white: #ffffff;
@theme-color-black: #000000;

@primaryColor: @theme-color-blue;
@primaryText: #ffffff;
@primaryText: @theme-color-white;
@secondaryColor: @theme-color-purple;
@secondaryText: #ffffff;
@blackText: #000000;
@footerColor: #df0934;
@footerText: #ffffff;
@secondaryText: @theme-color-white;
@blackText: @theme-color-black;
@footerColor: @theme-color-red;
@footerText: @theme-color-white;

@primaryDarker: @theme-color-blue;

Expand Down

0 comments on commit c2fac18

Please sign in to comment.