Skip to content

Commit 8393585

Browse files
committed
Use Vanilla as default homepage cube
1 parent 66190fe commit 8393585

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

packages/common/templates/parcel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export default new ParcelTemplate(
3131
decorateSelector(() => '#dfb07a'),
3232
{
3333
showOnHomePage: true,
34-
showCube: false,
34+
showCube: true,
3535
extraConfigurations: {
3636
'/.babelrc': configurations.babelrc,
3737
'/tsconfig.json': configurations.tsconfig,

packages/homepage/src/screens/home/Animation/Title.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,9 @@ export default ({ template }) => (
119119
<span>
120120
The online code editor for{' '}
121121
<RollingText updateCheck={template.name} width="12rem">
122-
<span style={{ color: template.color() }}>{template.niceName}</span>
122+
<span style={{ color: template.color() }}>
123+
{template.niceName === 'Vanilla' ? 'Web' : template.niceName}
124+
</span>
123125
</RollingText>
124126
</span>
125127
)}

packages/homepage/src/screens/home/Animation/canvas/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ class Canvas {
3636
// Create a dot
3737
const x = j * gridSize + gridSize * Math.random();
3838
const y = i * gridSize + gridSize * Math.random();
39-
const dot = new Dot(x, y, [108, 174, 221], 1);
39+
// const dot = new Dot(x, y, [108, 174, 221], 1);
40+
const dot = new Dot(x, y, [223, 176, 122], 1);
4041

4142
// Push to into an array of dots
4243
this.dots.push(dot);

0 commit comments

Comments
 (0)