From 3f3f466fc401d0914064ce7f545582926ba417d7 Mon Sep 17 00:00:00 2001 From: Mohit Maroliya Date: Mon, 18 Jul 2022 20:38:54 +0530 Subject: [PATCH 1/2] Adding FAQ-A Block & Icon --- src/blocks/faq/dark/a.js | 116 +++++++++++++++++++++++++++++++++ src/blocks/faq/light/a.js | 116 +++++++++++++++++++++++++++++++++ src/blocks/index.js | 6 ++ src/icons/faq/a.js | 132 ++++++++++++++++++++++++++++++++++++++ src/icons/index.js | 5 ++ 5 files changed, 375 insertions(+) create mode 100644 src/blocks/faq/dark/a.js create mode 100644 src/blocks/faq/light/a.js create mode 100644 src/icons/faq/a.js diff --git a/src/blocks/faq/dark/a.js b/src/blocks/faq/dark/a.js new file mode 100644 index 0000000..360fe81 --- /dev/null +++ b/src/blocks/faq/dark/a.js @@ -0,0 +1,116 @@ +import React from "react"; +import PropTypes from "prop-types"; + +function DarkFAQA(props) { + return ( +
+
+
+

+ Frequently Asked Questions +

+

+ Whatever cardigan tote bag tumblr hexagon brooklyn asymmetrical. +

+
+
+
+
+ + Ques + + + 01 + +
+
+

+ Bitters hashtag waistcoat fashion axe chia unicorn ? +

+

+ Glossier echo park pug, church-key sartorial biodiesel + vexillologist pop-up snackwave ramps cornhole. Marfa 3 wolf moon + party messenger bag selfies, poke vaporware kombucha + lumbersexual pork belly polaroid hoodie portland craft + beer.Glossier echo park pug, church-key sartorial biodiesel + vexillologist pop-up snackwave ramps cornhole. Marfa 3 wolf moon + party messenger bag selfies, poke vaporware kombucha + lumbersexual pork belly polaroid hoodie portland craft beer. +

+
+
+ +
+
+ + Ques + + + 02 + +
+
+

+ Meditation bushwick direct trade taxidermy shaman ? +

+

+ Glossier echo park pug, church-key sartorial biodiesel + vexillologist pop-up snackwave ramps cornhole. Marfa 3 wolf moon + party messenger bag selfies, poke vaporware kombucha + lumbersexual pork belly polaroid hoodie portland craft + beer.Glossier echo park pug, church-key sartorial biodiesel + vexillologist pop-up snackwave ramps cornhole. Marfa 3 wolf moon + party messenger bag selfies, poke vaporware kombucha + lumbersexual pork belly polaroid hoodie portland craft beer. +

+
+
+ +
+
+ + Ques + + + 03 + +
+
+

+ Woke master cleanse drinking vinegar salvia ? +

+

+ Glossier echo park pug, church-key sartorial biodiesel + vexillologist pop-up snackwave ramps cornhole. Marfa 3 wolf moon + party messenger bag selfies, poke vaporware kombucha + lumbersexual pork belly polaroid hoodie portland craft + beer.Glossier echo park pug, church-key sartorial biodiesel + vexillologist pop-up snackwave ramps cornhole. Marfa 3 wolf moon + party messenger bag selfies, poke vaporware kombucha + lumbersexual pork belly polaroid hoodie portland craft beer. +

+
+
+ + +
+
+
+ ); +} + +DarkFAQA.defaultProps = { + theme: "indigo", +}; + +DarkFAQA.propTypes = { + theme: PropTypes.string.isRequired, +}; + +export default DarkFAQA; diff --git a/src/blocks/faq/light/a.js b/src/blocks/faq/light/a.js new file mode 100644 index 0000000..b1e5a38 --- /dev/null +++ b/src/blocks/faq/light/a.js @@ -0,0 +1,116 @@ +import React from "react"; +import PropTypes from "prop-types"; + +function LightFAQA(props) { + return ( +
+
+
+

+ Frequently Asked Questions +

+

+ Whatever cardigan tote bag tumblr hexagon brooklyn asymmetrical. +

+
+
+
+
+ + Ques + + + 01 + +
+
+

+ Bitters hashtag waistcoat fashion axe chia unicorn ? +

+

+ Glossier echo park pug, church-key sartorial biodiesel + vexillologist pop-up snackwave ramps cornhole. Marfa 3 wolf moon + party messenger bag selfies, poke vaporware kombucha + lumbersexual pork belly polaroid hoodie portland craft + beer.Glossier echo park pug, church-key sartorial biodiesel + vexillologist pop-up snackwave ramps cornhole. Marfa 3 wolf moon + party messenger bag selfies, poke vaporware kombucha + lumbersexual pork belly polaroid hoodie portland craft beer. +

+
+
+ +
+
+ + Ques + + + 02 + +
+
+

+ Meditation bushwick direct trade taxidermy shaman ? +

+

+ Glossier echo park pug, church-key sartorial biodiesel + vexillologist pop-up snackwave ramps cornhole. Marfa 3 wolf moon + party messenger bag selfies, poke vaporware kombucha + lumbersexual pork belly polaroid hoodie portland craft + beer.Glossier echo park pug, church-key sartorial biodiesel + vexillologist pop-up snackwave ramps cornhole. Marfa 3 wolf moon + party messenger bag selfies, poke vaporware kombucha + lumbersexual pork belly polaroid hoodie portland craft beer. +

+
+
+ +
+
+ + Ques + + + 03 + +
+
+

+ Woke master cleanse drinking vinegar salvia ? +

+

+ Glossier echo park pug, church-key sartorial biodiesel + vexillologist pop-up snackwave ramps cornhole. Marfa 3 wolf moon + party messenger bag selfies, poke vaporware kombucha + lumbersexual pork belly polaroid hoodie portland craft + beer.Glossier echo park pug, church-key sartorial biodiesel + vexillologist pop-up snackwave ramps cornhole. Marfa 3 wolf moon + party messenger bag selfies, poke vaporware kombucha + lumbersexual pork belly polaroid hoodie portland craft beer. +

+
+
+ + +
+
+
+ ); +} + +LightFAQA.defaultProps = { + theme: "indigo", +}; + +LightFAQA.propTypes = { + theme: PropTypes.string.isRequired, +}; + +export default LightFAQA; diff --git a/src/blocks/index.js b/src/blocks/index.js index f48ad80..fb454e9 100644 --- a/src/blocks/index.js +++ b/src/blocks/index.js @@ -56,6 +56,9 @@ import DarkEcommerceA from './ecommerce/dark/a'; import DarkEcommerceB from './ecommerce/dark/b'; import DarkEcommerceC from './ecommerce/dark/c'; +import LightFAQA from './faq/light/a'; + +import DarkFAQA from './faq/dark/a'; import LightFeatureA from './feature/light/a'; import LightFeatureB from './feature/light/b'; @@ -192,6 +195,9 @@ export default function getBlock({theme = 'indigo', darkMode = false}) { EcommerceB: darkMode ? : , EcommerceC: darkMode ? : }, + FAQ: { + FAQA: darkMode ? : , + }, Feature: { FeatureA: darkMode ? : , FeatureB: darkMode ? : , diff --git a/src/icons/faq/a.js b/src/icons/faq/a.js new file mode 100644 index 0000000..89271a2 --- /dev/null +++ b/src/icons/faq/a.js @@ -0,0 +1,132 @@ +import React from "react"; + +function FAQA() { + return ( + + + + + + + + + + + + + + + + + + + + + ); +} + +export default FAQA; diff --git a/src/icons/index.js b/src/icons/index.js index 9b89c77..e5d74e0 100644 --- a/src/icons/index.js +++ b/src/icons/index.js @@ -28,6 +28,8 @@ import EcommerceA from './ecommerce/a'; import EcommerceB from './ecommerce/b'; import EcommerceC from './ecommerce/c'; +import FAQA from './faq/a'; + import FeatureA from './feature/a'; import FeatureB from './feature/b'; import FeatureC from './feature/c'; @@ -113,6 +115,9 @@ export default function getIcons() { EcommerceB: , EcommerceC: }, + FAQ: { + FAQA: + }, Feature: { FeatureA: , FeatureB: , From 4a47ac1ad64c378add57d5ffc347a3bc7a8ac9c8 Mon Sep 17 00:00:00 2001 From: Mohit Maroliya Date: Tue, 19 Jul 2022 17:09:56 +0530 Subject: [PATCH 2/2] Adding FAQ-B Block & Icon --- src/blocks/faq/dark/b.js | 132 ++++++++++++++++++++++++++++++++++++++ src/blocks/faq/light/b.js | 132 ++++++++++++++++++++++++++++++++++++++ src/blocks/index.js | 3 + src/icons/faq/b.js | 87 +++++++++++++++++++++++++ src/icons/index.js | 4 +- 5 files changed, 357 insertions(+), 1 deletion(-) create mode 100644 src/blocks/faq/dark/b.js create mode 100644 src/blocks/faq/light/b.js create mode 100644 src/icons/faq/b.js diff --git a/src/blocks/faq/dark/b.js b/src/blocks/faq/dark/b.js new file mode 100644 index 0000000..6970740 --- /dev/null +++ b/src/blocks/faq/dark/b.js @@ -0,0 +1,132 @@ +import React from "react"; +import PropTypes from "prop-types"; + +function DarkFAQB(props) { + return ( +
+
+
+

+ Frequently Asked Questions +

+

+ Whatever cardigan tote bag tumblr hexagon brooklyn asymmetrical. +

+
+
+
+
+

+ QUESTION 1 +

+

+ Pinterest DIY dreamcatcher gentrify single-origin coffee ? +

+

+ Photo booth fam kinfolk cold-pressed sriracha leggings jianbing + microdosing tousled waistcoat. Plaid fixie chambray 90's, + slow-carb etsy tumeric. Cray pug you probably haven't heard of + them. +

+ + Learn More + + + + + +
+
+
+
+

+ QUESTION 2 +

+

+ Ennui Snackwave Thundercats Hotplace SuperSonic ? +

+

+ Live-edge letterpress cliche, salvia fanny pack humblebrag + narwhal portland. VHS man braid palo santo hoodie brunch trust + fund. Bitters hashtag waistcoat fashion axe chia unicorn. +

+ + Learn More + + + + + +
+
+
+
+

+ QUESTION 3 +

+

+ Roof party normcore before they sold out, cornhole vape ? +

+

+ Franzen you probably haven't heard of them man bun deep jianbing + selfies heirloom prism food truck ugh squid celiac humblebrag. + Cold-pressed sriracha leggings jianbing microdosing tousled + waistcoat. +

+ + Learn More + + + + + +
+
+
+
+
+ ); +} + +DarkFAQB.defaultProps = { + theme: "indigo", +}; + +DarkFAQB.propTypes = { + theme: PropTypes.string.isRequired, +}; + +export default DarkFAQB; diff --git a/src/blocks/faq/light/b.js b/src/blocks/faq/light/b.js new file mode 100644 index 0000000..127cf20 --- /dev/null +++ b/src/blocks/faq/light/b.js @@ -0,0 +1,132 @@ +import React from "react"; +import PropTypes from "prop-types"; + +function LightFAQB(props) { + return ( +
+
+
+

+ Frequently Asked Questions +

+

+ Whatever cardigan tote bag tumblr hexagon brooklyn asymmetrical. +

+
+
+
+
+

+ QUESTION 1 +

+

+ Pinterest DIY dreamcatcher gentrify single-origin coffee ? +

+

+ Photo booth fam kinfolk cold-pressed sriracha leggings jianbing + microdosing tousled waistcoat.Plaid fixie chambray 90's, + slow-carb etsy tumeric. Cray pug you probably haven't heard of + them. +

+ + Learn More + + + + + +
+
+
+
+

+ QUESTION 2 +

+

+ Ennui Snackwave Thundercats Hotplace SuperSonic ? +

+

+ Live-edge letterpress cliche, salvia fanny pack humblebrag + narwhal portland. VHS man braid palo santo hoodie brunch trust + fund. Bitters hashtag waistcoat fashion axe chia unicorn. +

+ + Learn More + + + + + +
+
+
+
+

+ QUESTION 3 +

+

+ Roof party normcore before they sold out, cornhole vape ? +

+

+ Franzen you probably haven't heard of them man bun deep jianbing + selfies heirloom prism food truck ugh squid celiac humblebrag. + Cold-pressed sriracha leggings jianbing microdosing tousled + waistcoat. +

+ + Learn More + + + + + +
+
+
+
+
+ ); +} + +LightFAQB.defaultProps = { + theme: "indigo", +}; + +LightFAQB.propTypes = { + theme: PropTypes.string.isRequired, +}; + +export default LightFAQB; diff --git a/src/blocks/index.js b/src/blocks/index.js index fb454e9..8aef361 100644 --- a/src/blocks/index.js +++ b/src/blocks/index.js @@ -57,8 +57,10 @@ import DarkEcommerceB from './ecommerce/dark/b'; import DarkEcommerceC from './ecommerce/dark/c'; import LightFAQA from './faq/light/a'; +import LightFAQB from './faq/light/b'; import DarkFAQA from './faq/dark/a'; +import DarkFAQB from './faq/dark/b'; import LightFeatureA from './feature/light/a'; import LightFeatureB from './feature/light/b'; @@ -197,6 +199,7 @@ export default function getBlock({theme = 'indigo', darkMode = false}) { }, FAQ: { FAQA: darkMode ? : , + FAQB: darkMode ? : }, Feature: { FeatureA: darkMode ? : , diff --git a/src/icons/faq/b.js b/src/icons/faq/b.js new file mode 100644 index 0000000..70c65ae --- /dev/null +++ b/src/icons/faq/b.js @@ -0,0 +1,87 @@ +import React from "react"; + +function FAQB() { + return ( + + + + + + + + + + + + + + + + + + ); +} + +export default FAQB; diff --git a/src/icons/index.js b/src/icons/index.js index e5d74e0..eab7d1e 100644 --- a/src/icons/index.js +++ b/src/icons/index.js @@ -29,6 +29,7 @@ import EcommerceB from './ecommerce/b'; import EcommerceC from './ecommerce/c'; import FAQA from './faq/a'; +import FAQB from './faq/b'; import FeatureA from './feature/a'; import FeatureB from './feature/b'; @@ -116,7 +117,8 @@ export default function getIcons() { EcommerceC: }, FAQ: { - FAQA: + FAQA: , + FAQB: }, Feature: { FeatureA: ,