diff --git a/components-eleventy/story/cover.js b/components-eleventy/story/cover.js new file mode 100644 index 0000000..82ff7c7 --- /dev/null +++ b/components-eleventy/story/cover.js @@ -0,0 +1,30 @@ +export default function ( page ) { + + const { + heading, + headingUrl, + + imageUrl = null, + } = page + + // Setup inline lazysizes + // this.usingComponent( 'node_modules/lazysizes/lazysizes.min.js' ) + + // console.log('video', video) + + return /* html */` + + + + + + +
+ +

${ heading }

+ +
+ +
+ ` +}