|
|
@ -1,11 +1,12 @@ |
|
|
|
import React from "react"; |
|
|
|
import React from "react"; |
|
|
|
|
|
|
|
|
|
|
|
const Design7 = () => { |
|
|
|
const Design7 = ({ featuredImage, featuredImageClassname }) => { |
|
|
|
return ( |
|
|
|
return ( |
|
|
|
<div> |
|
|
|
<div className="flex flex-col items-center"> |
|
|
|
<img |
|
|
|
<img |
|
|
|
src="images/offersectionalex-lvrs-HDjExSGuWUw-unsplash.svg" |
|
|
|
src={featuredImage} |
|
|
|
class="rounded" |
|
|
|
className={`${featuredImageClassname}`} |
|
|
|
|
|
|
|
alt="blog" |
|
|
|
/> |
|
|
|
/> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
); |
|
|
|
); |
|
|
@ -14,9 +15,11 @@ const Design7 = () => { |
|
|
|
export default Design7; |
|
|
|
export default Design7; |
|
|
|
|
|
|
|
|
|
|
|
Design7.defaultProps = { |
|
|
|
Design7.defaultProps = { |
|
|
|
|
|
|
|
featuredImage: "images/offersectionalex-lvrs-HDjExSGuWUw-unsplash.svg", |
|
|
|
|
|
|
|
featuredImageClassname: "", |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// offersectionalexander-mils-nG4ZimMIO_k-unsplash.svg
|
|
|
|
// offersectionalexander-mils-nG4ZimMIO_k-unsplash.svg
|
|
|
|
|
|
|
|
|
|
|
|