-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
39 lines (37 loc) · 1.03 KB
/
Copy pathconfig.js
File metadata and controls
39 lines (37 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// ========================================
// Wormhole Configuration
// ========================================
const WORMHOLE_CONFIG = [
{
id: 'personal',
label: 'Personal',
color: 0x00ff88, // Green
position: { x: -60, y: 20, z: -180 },
destination: './personal/index.html'
},
{
id: 'work',
label: 'Work',
color: 0x06ffa5, // Cyan
position: { x: 60, y: -20, z: -180 },
destination: './work/index.html'
},
{
id: 'blog',
label: 'Blog',
color: 0xff6b35, // Orange (star-like)
position: { x: 0, y: -60, z: -200 },
destination: './blog/index.html'
},
{
id: 'my_world_view',
label: 'My World View',
color: 0x4cc9f0, // Cyan/Blue
position: { x: 0, y: 60, z: -220 },
destination: './my_world_view/index.html'
}
];
// Export for use in app.js
if (typeof module !== 'undefined' && module.exports) {
module.exports = { WORMHOLE_CONFIG };
}