mirror of
https://github.com/modernweb-dev/rocket.git
synced 2026-03-10 08:51:24 +00:00
14 lines
328 B
JavaScript
14 lines
328 B
JavaScript
const { createSocialImage } = require('@rocket/cli');
|
|
|
|
module.exports = async function () {
|
|
const socialMediaImage = await createSocialImage({
|
|
title: 'Rocket',
|
|
subTitle: 'Static sites with',
|
|
subTitle2: 'a sprinkle of JavaScript.',
|
|
footer: 'A Modern Web Product',
|
|
});
|
|
return {
|
|
socialMediaImage,
|
|
};
|
|
};
|