From 156a129cc437fc8c22011c1a9ed7529326bfd4da Mon Sep 17 00:00:00 2001 From: kKaskak <117831817+kKaskak@users.noreply.github.com> Date: Wed, 13 Dec 2023 15:41:51 +0100 Subject: [PATCH 01/11] feature: seasonal notfication - no logic --- .../SeasonalNotification.js | 34 +++++++ src/common/SeasonalNotification/styles.less | 99 +++++++++++++++++++ src/routes/Board/Board.js | 2 + 3 files changed, 135 insertions(+) create mode 100644 src/common/SeasonalNotification/SeasonalNotification.js create mode 100644 src/common/SeasonalNotification/styles.less diff --git a/src/common/SeasonalNotification/SeasonalNotification.js b/src/common/SeasonalNotification/SeasonalNotification.js new file mode 100644 index 000000000..7adf96fbb --- /dev/null +++ b/src/common/SeasonalNotification/SeasonalNotification.js @@ -0,0 +1,34 @@ +// Copyright (C) 2017-2023 Smart code 203358507 + +const React = require('react'); +const styles = require('./styles'); +const { default: Icon } = require('@stremio/stremio-icons/react'); +const PropTypes = require('prop-types'); +const Button = require('../Button'); + +const SeasonalNotification = ({ imgUrl, altUrl }) => { + + return ( +