Skip to content

Commit c6972e3

Browse files
committed
7 orbs
1 parent 920afb8 commit c6972e3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

packages/docusaurus-theme/src/components/HeroBackground.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,9 +131,9 @@ export default function HeroBackground(): React.ReactElement {
131131
return pool[Math.floor(Math.random() * pool.length)];
132132
};
133133

134-
const speeds = [0.22, 0.20, 0.25, 0.23, 0.21, 0.24, 0.19, 0.26];
135-
const startTs = [0.30, 0.70, 0.10, 0.55, 0.45, 0.80, 0.20, 0.62];
136-
const initialEdges = Array.from({length: 8}, () => pickEdge());
134+
const speeds = [0.22, 0.20, 0.25, 0.23, 0.21, 0.24, 0.19];
135+
const startTs = [0.30, 0.70, 0.10, 0.55, 0.45, 0.80, 0.20];
136+
const initialEdges = Array.from({length: 7}, () => pickEdge());
137137
const routes = initialEdges
138138
.map((e, i) => e ? {fromIdx: e.a, toIdx: e.b, speed: speeds[i], startT: startTs[i]} : null)
139139
.filter(Boolean) as {fromIdx:number; toIdx:number; speed:number; startT:number}[];

0 commit comments

Comments
 (0)