chore: improve social media images
This commit is contained in:
parent
6f2b6f940a
commit
f1cb7b83b4
5 changed files with 64 additions and 0 deletions
12
docs/blog/controlling-exports.11tydata.cjs
Normal file
12
docs/blog/controlling-exports.11tydata.cjs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
const { createSocialImage } = require('@rocket/cli');
|
||||
|
||||
module.exports = async function () {
|
||||
const socialMediaImage = await createSocialImage({
|
||||
title: 'Controlling',
|
||||
subTitle: 'Exports',
|
||||
footer: 'Lion Blog',
|
||||
});
|
||||
return {
|
||||
socialMediaImage,
|
||||
};
|
||||
};
|
||||
13
docs/blog/ing-open-sources-lion.11tydata.cjs
Normal file
13
docs/blog/ing-open-sources-lion.11tydata.cjs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
const { createSocialImage } = require('@rocket/cli');
|
||||
|
||||
module.exports = async function () {
|
||||
const socialMediaImage = await createSocialImage({
|
||||
title: 'ING',
|
||||
subTitle: 'Open Sources',
|
||||
subTitle2: 'Lion',
|
||||
footer: 'Lion Blog',
|
||||
});
|
||||
return {
|
||||
socialMediaImage,
|
||||
};
|
||||
};
|
||||
13
docs/blog/introducing-lions-website.11tydata.cjs
Normal file
13
docs/blog/introducing-lions-website.11tydata.cjs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
const { createSocialImage } = require('@rocket/cli');
|
||||
|
||||
module.exports = async function () {
|
||||
const socialMediaImage = await createSocialImage({
|
||||
title: 'Introducing',
|
||||
subTitle: 'Lions',
|
||||
subTitle2: 'Website',
|
||||
footer: 'Lion Blog',
|
||||
});
|
||||
return {
|
||||
socialMediaImage,
|
||||
};
|
||||
};
|
||||
13
docs/components/index.11tydata.cjs
Normal file
13
docs/components/index.11tydata.cjs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
const { createSocialImage } = require('@rocket/cli');
|
||||
|
||||
module.exports = async function () {
|
||||
const socialMediaImage = await createSocialImage({
|
||||
title: 'Lion',
|
||||
subTitle: 'Components for',
|
||||
subTitle2: 'your Design System',
|
||||
footer: 'ING open source',
|
||||
});
|
||||
return {
|
||||
socialMediaImage,
|
||||
};
|
||||
};
|
||||
13
docs/index.11tydata.cjs
Normal file
13
docs/index.11tydata.cjs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
const { createSocialImage } = require('@rocket/cli');
|
||||
|
||||
module.exports = async function () {
|
||||
const socialMediaImage = await createSocialImage({
|
||||
title: 'Lion',
|
||||
subTitle: 'Components for',
|
||||
subTitle2: 'your Design System',
|
||||
footer: 'ING open source',
|
||||
});
|
||||
return {
|
||||
socialMediaImage,
|
||||
};
|
||||
};
|
||||
Loading…
Reference in a new issue