diff --git a/src/components/presets/adobe.js b/src/components/presets/adobe.js index 2c0627fb..d173ad1e 100644 --- a/src/components/presets/adobe.js +++ b/src/components/presets/adobe.js @@ -14,7 +14,6 @@ const code = ( > @@ -44,10 +44,10 @@ const code = ( background: 'linear-gradient(to right, rgb(247, 102, 152) 0%, rgb(234, 64, 123) 29%, rgb(101, 78, 163) 100%);', lineHeight: 1.4, - fontWeight: '900', + fontWeight: 'bold', fontFamily: 'Merriweather', maxWidth: '36rem', - bg: 'white' + bg: `${query.bg}` }} children={query.title} /> @@ -63,7 +63,8 @@ const code = ( ) const query = { - title: 'Craft quality editorial flows in Premier Pro' + title: 'Craft quality editorial flows in Premier Pro', + bg: 'black' } export default { name: 'adobe', code, query } diff --git a/src/components/presets/index.js b/src/components/presets/index.js index 3b6d2983..bfc76f02 100644 --- a/src/components/presets/index.js +++ b/src/components/presets/index.js @@ -1,4 +1,5 @@ import article from './article' +import adobe from './adobe' import bytesandhumans from './bytesandhumans' import fauna from './fauna' import microlink from './microlink' @@ -9,10 +10,10 @@ import simple from './simple' import swyxdotio from './swyxdotio' import thePracticalDev from './thepracticaldev' import vercell from './vercell' -import adobe from './adobe' export default { article, + adobe, bytesandhumans, fauna, microlink, @@ -22,6 +23,5 @@ export default { simple, swyxdotio, thePracticalDev, - adobe, vercell }