mirror of
https://github.com/modernweb-dev/rocket.git
synced 2026-03-10 08:51:24 +00:00
29 lines
887 B
JavaScript
29 lines
887 B
JavaScript
module.exports = async function () {
|
|
return {
|
|
dir: 'ltr',
|
|
lang: 'en',
|
|
name: 'Rocket',
|
|
description: 'Rocket is the way to build fast static websites with a sprinkle of JavaScript',
|
|
socialLinks: [
|
|
{
|
|
name: 'GitHub',
|
|
url: 'https://github.com/modernweb-dev/rocket',
|
|
},
|
|
{
|
|
name: 'Slack',
|
|
url:
|
|
'https://join.slack.com/t/lit-and-friends/shared_invite/zt-llwznvsy-LZwT13R66gOgnrg12PUGqw',
|
|
},
|
|
],
|
|
gitSiteUrl: 'https://github.com/modernweb-dev/rocket',
|
|
gitBranch: 'main',
|
|
helpUrl: 'https://github.com/modernweb-dev/rocket/issues',
|
|
logoAlt: 'Rocket Logo',
|
|
iconColorMaskIcon: '#3f93ce',
|
|
iconColorMsapplicationTileColor: '#1d3557',
|
|
iconColorThemeColor: '#1d3557',
|
|
socialMediaImage: '/_assets/social-media-image.jpg',
|
|
// analytics: 'UA-131782693-2', // modern web key
|
|
};
|
|
};
|