diff --git a/src/blocks/blogpage/dark/a.js b/src/blocks/blogpage/dark/a.js new file mode 100644 index 0000000..89416ee --- /dev/null +++ b/src/blocks/blogpage/dark/a.js @@ -0,0 +1,213 @@ +import React from "react"; +import PropTypes from "prop-types"; + +function DarkBlogPageA(props) { + return ( +
+
+
+
+ hero +

+ IMAGE CAPTION +

+
+
+

+ Knausgaard typewriter readymade marfa crypto honey firm. +

+
+ + + blog + + + Holden Caulfield + + + 25 Jul '22 • 5 min read + + + + +
+
+

+ 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. + Plaid fixie chambray 90's, slow-carb etsy tumeric.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. Whatever + cardigan tote bag tumblr hexagon brooklyn asymmetrical + gentrify, subway tile poke farm-to-table. +

+
+
+
+

+ 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. Plaid + fixie chambray 90's, slow-carb etsy tumeric.Glossier echo park + pug, church-key sartorial biodiesel vexillologist pop-up + snackwave ramps cornhole. +

+
+
+ + + + + + Authentic Cliche Forage + +
+
+
+
+

+ Live-edge letterpress cliche, salvia fannxagon brooklyn asymmetrical + gentrify, subway tile poke farm-to-table.ive-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. Franzen you probably haven't heard of them + man bun deep jianbing selfies heirloom prism food truck ugh squid + celiac humblebrag.Live-edge letterpress cliche, salvia fannxagon + brooklyn asymmetrical gentrify, subway tile poke + farm-to-table.ive-edge letterpress cliche, salvia fanny pack + humblebrag narwhal portland. Meggings portland fingerstache lyft, + post-ironic fixie man bun banh mi umami everyday carry hexagon + locavore direct trade art party. Locavore small batch listicle + gastropub farm-to-table lumbersexual salvia messenger bag. Coloring + book flannel truffaut craft beer drinking vinegar sartorial, disrupt + fashion axe normcore meh butcher. Portland 90's scenester + vexillologist forage post-ironic asymmetrical, chartreuse disrupt + butcher paleo intelligentsia pabst before they sold out four loko. 3 + wolf moon brooklyn. +

+
+ +

Thank You !

+
+ + +
+ +
+ + + + + + + + + + + + + + + + + + + + + + + +

+ Copyright © 2022 • Holden's blog
Let's start coding +

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

+ IMAGE CAPTION +

+
+
+

+ Knausgaard typewriter readymade marfa crypto honey firm. +

+ +
+ + blog + + + Holden Caulfield + + + 25 Jul '22 • 5 min read + + + +
+
+

+ 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. + Plaid fixie chambray 90's, slow-carb etsy tumeric.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. Whatever + cardigan tote bag tumblr hexagon brooklyn asymmetrical + gentrify, subway tile poke farm-to-table. +

+
+
+
+

+ 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. Plaid + fixie chambray 90's, slow-carb etsy tumeric.Glossier echo park + pug, church-key sartorial biodiesel vexillologist pop-up + snackwave ramps cornhole. +

+
+ +
+ + + + + + Authentic Cliche Forage + +
+
+
+
+

+ Live-edge letterpress cliche, salvia fannxagon brooklyn asymmetrical + gentrify, subway tile poke farm-to-table.ive-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. Franzen you probably haven't heard of them + man bun deep jianbing selfies heirloom prism food truck ugh squid + celiac humblebrag.Live-edge letterpress cliche, salvia fannxagon + brooklyn asymmetrical gentrify, subway tile poke + farm-to-table.ive-edge letterpress cliche, salvia fanny pack + humblebrag narwhal portland. Meggings portland fingerstache lyft, + post-ironic fixie man bun banh mi umami everyday carry hexagon + locavore direct trade art party. Locavore small batch listicle + gastropub farm-to-table lumbersexual salvia messenger bag. Coloring + book flannel truffaut craft beer drinking vinegar sartorial, disrupt + fashion axe normcore meh butcher. Portland 90's scenester + vexillologist forage post-ironic asymmetrical, chartreuse disrupt + butcher paleo intelligentsia pabst before they sold out four loko. 3 + wolf moon brooklyn. +

+
+ +

Thank You !

+
+ + +
+
+ + + + + + + + + + + + + + + + + + + + + + + +

+ Copyright © 2022 • Holden's blog
Let's start coding +

+
+
+
+ ); +} + +LightBlogPageA.defaultProps = { + theme: "indigo", +}; + +LightBlogPageA.propTypes = { + theme: PropTypes.string.isRequired, +}; + +export default LightBlogPageA; diff --git a/src/blocks/index.js b/src/blocks/index.js index f48ad80..c5b26af 100644 --- a/src/blocks/index.js +++ b/src/blocks/index.js @@ -12,6 +12,10 @@ import DarkBlogC from './blog/dark/c'; import DarkBlogD from './blog/dark/d'; import DarkBlogE from './blog/dark/e'; +import LightBlogPageA from './blogpage/light/a'; + +import DarkBlogPageA from './blogpage/dark/a'; + import LightContactA from './contact/light/a'; import LightContactB from './contact/light/b'; import LightContactC from './contact/light/c'; @@ -166,6 +170,9 @@ export default function getBlock({theme = 'indigo', darkMode = false}) { BlogD: darkMode ? : , BlogE: darkMode ? : }, + BlogPage: { + BlogPageA: darkMode ? : , + }, Contact: { ContactA: darkMode ? : , ContactB: darkMode ? : , diff --git a/src/icons/blogpage/a.js b/src/icons/blogpage/a.js new file mode 100644 index 0000000..9a99092 --- /dev/null +++ b/src/icons/blogpage/a.js @@ -0,0 +1,129 @@ +import React from "react"; + +function BlogPageA() { + return ( + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ); +} + +export default BlogPageA; diff --git a/src/icons/index.js b/src/icons/index.js index 9b89c77..8603cbf 100644 --- a/src/icons/index.js +++ b/src/icons/index.js @@ -6,6 +6,8 @@ import BlogC from './blog/c'; import BlogD from './blog/d'; import BlogE from './blog/e'; +import BlogPageA from './blogpage/a'; + import ContactA from './contact/a'; import ContactB from './contact/b'; import ContactC from './contact/c'; @@ -87,6 +89,9 @@ export default function getIcons() { BlogD: , BlogE: }, + BlogPage: { + BlogPageA: , + }, Contact: { ContactA: , ContactB: ,