diff --git a/src/blocks/index.js b/src/blocks/index.js index f48ad80..4c8f477 100644 --- a/src/blocks/index.js +++ b/src/blocks/index.js @@ -144,10 +144,12 @@ import DarkStepC from './step/dark/c'; import LightTeamA from './team/light/a'; import LightTeamB from './team/light/b'; import LightTeamC from './team/light/c'; +import LightTeamD from './team/light/d'; import DarkTeamA from './team/dark/a'; import DarkTeamB from './team/dark/b'; import DarkTeamC from './team/dark/c'; +import DarkTeamD from './team/dark/d'; import LightTestimonialA from './testimonial/light/a'; import LightTestimonialB from './testimonial/light/b'; @@ -245,7 +247,8 @@ export default function getBlock({theme = 'indigo', darkMode = false}) { Team: { TeamA: darkMode ? : , TeamB: darkMode ? : , - TeamC: darkMode ? : + TeamC: darkMode ? : , + TeamD: darkMode ? : }, Testimonial: { TestimonialA: darkMode ? : , diff --git a/src/blocks/team/dark/d.js b/src/blocks/team/dark/d.js new file mode 100644 index 0000000..cc5b080 --- /dev/null +++ b/src/blocks/team/dark/d.js @@ -0,0 +1,219 @@ +import React from "react"; +import PropTypes from "prop-types"; + +function DarkTeamD(props) { + return ( +
+
+
+

+ Our Team +

+

+ Whatever cardigan tote bag tumblr hexagon brooklyn asymmetrical + gentrify, subway tile poke farm-to-table. Franzen you probably + haven't heard of them. +

+
+ +
+
+ team +
+
+

+ Holden Caulfield | UI Designer +

+

+ DIY tote bag drinking vinegar cronut adaptogen squid fanny pack + vaporware photo booth fam. +

+ + + + + + + + + + + + + + + + + +
+
+ +
+
+ team +
+
+

+ Atticus Finch{" "} + | Product Manager +

+

+ DIY tote bag drinking vinegar cronut adaptogen squid fanny pack + vaporware photo booth fam. +

+ + + + + + + + + + + + + + + + + +
+
+ +
+
+ team +
+
+

+ Alper Kamu{" "} + | Software Developer +

+

+ DIY tote bag drinking vinegar cronut adaptogen squid fanny pack + vaporware photo booth fam. +

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

+ Our Team +

+

+ Whatever cardigan tote bag tumblr hexagon brooklyn asymmetrical + gentrify, subway tile poke farm-to-table. Franzen you probably + haven't heard of them. +

+
+ +
+
+ team +
+
+

+ Holden Caulfield | UI Designer +

+

+ DIY tote bag drinking vinegar cronut adaptogen squid fanny pack + vaporware photo booth fam. +

+ + + + + + + + + + + + + + + + + +
+
+ +
+
+ team +
+
+

+ Atticus Finch{" "} + | Product Manager +

+

+ DIY tote bag drinking vinegar cronut adaptogen squid fanny pack + vaporware photo booth fam. +

+ + + + + + + + + + + + + + + + + +
+
+ +
+
+ team +
+
+

+ Alper Kamu{" "} + | Software Developer +

+

+ DIY tote bag drinking vinegar cronut adaptogen squid fanny pack + vaporware photo booth fam. +

+ + + + + + + + + + + + + + + + + +
+
+
+
+ ); +} + +LightTeamD.defaultProps = { + theme: "indigo", +}; + +LightTeamD.propTypes = { + theme: PropTypes.string.isRequired, +}; + +export default LightTeamD; diff --git a/src/icons/index.js b/src/icons/index.js index 9b89c77..17d40e0 100644 --- a/src/icons/index.js +++ b/src/icons/index.js @@ -73,6 +73,7 @@ import StepC from './step/c'; import TeamA from './team/a'; import TeamB from './team/b'; import TeamC from './team/c'; +import TeamD from './team/d'; import TestimonialA from './testimonial/a'; import TestimonialB from './testimonial/b'; @@ -166,7 +167,8 @@ export default function getIcons() { Team: { TeamA: , TeamB: , - TeamC: + TeamC: , + TeamD: }, Testimonial: { TestimonialA: , diff --git a/src/icons/team/d.js b/src/icons/team/d.js new file mode 100644 index 0000000..8d296aa --- /dev/null +++ b/src/icons/team/d.js @@ -0,0 +1,77 @@ +import React from "react"; + +function TeamD() { + return ( + + + + + + + + + + + + + + + + + + + + + + + + ); +} + +export default TeamD;