22//  ReasoningDemo component using VideoCarousel directly
33
44import  VideoCarousel  from  " ./VideoCarousel.astro" 
5+ import  { getAssetPath  } from  ' ../utils/assetPath' 
56
67const =  [
78	{ 
89		title: " "  
9- 		src: " / sim-demo/sim.mp4"  
10+ 		src: getAssetPath ( " sim-demo/sim.mp4" ) , 
1011		description: " "  
1112		autoplay: true , 
1213	}, 
@@ -15,43 +16,43 @@ const simulationDemoVideos = [
1516const =  [
1617	{ 
1718		title: " "  
18- 		src: " / pnp-demo/C0660_4x.mp4"  
19+ 		src: getAssetPath ( " pnp-demo/C0660_4x.mp4" ) , 
1920		description: " "  
2021		autoplay: true , 
2122	}, 
2223	{ 
2324		title: " "  
24- 		src: " / pnp-demo/C0663_4x.mp4"  
25+ 		src: getAssetPath ( " pnp-demo/C0663_4x.mp4" ) , 
2526		description: " "  
2627		autoplay: false , 
2728	}, 
2829	{ 
2930		title: " "  
30- 		src: " / pnp-demo/C0666_4x.mp4"  
31+ 		src: getAssetPath ( " pnp-demo/C0666_4x.mp4" ) , 
3132		description: " "  
3233		autoplay: false , 
3334	}, 
3435	{ 
3536		title: " "  
36- 		src: " / pnp-demo/C0671_4x.mp4"  
37+ 		src: getAssetPath ( " pnp-demo/C0671_4x.mp4" ) , 
3738		description: " "  
3839		autoplay: false , 
3940	}, 
4041	{ 
4142		title: " "  
42- 		src: " / pnp-demo/C0672_4x.mp4"  
43+ 		src: getAssetPath ( " pnp-demo/C0672_4x.mp4" ) , 
4344		description: " "  
4445		autoplay: false , 
4546	}, 
4647	{ 
4748		title: " "  
48- 		src: " / pnp-demo/C0673_4x.mp4"  
49+ 		src: getAssetPath ( " pnp-demo/C0673_4x.mp4" ) , 
4950		description: " "  
5051		autoplay: false , 
5152	}, 
5253	{ 
5354		title: " "  
54- 		src: " / pnp-demo/C0656_4x.mp4"  
55+ 		src: getAssetPath ( " pnp-demo/C0656_4x.mp4" ) , 
5556		description: " "  
5657		autoplay: false , 
5758	}, 
@@ -60,27 +61,27 @@ const pickAndPlaceDemoVideos = [
6061const =  [
6162	{ 
6263		title: " Make Sandwich"  
63- 		src: " / long-horizon-demo/make-sandwich.mp4"  
64+ 		src: getAssetPath ( " long-horizon-demo/make-sandwich.mp4" ) , 
6465		autoplay: false , 
6566	}, 
6667	{ 
6768		title: " Purchase Goods"  
68- 		src: " / long-horizon-demo/purchase-goods.mp4"  
69+ 		src: getAssetPath ( " long-horizon-demo/purchase-goods.mp4" ) , 
6970		autoplay: false , 
7071	}, 
7172	{ 
7273		title: " Sort Objects"  
73- 		src: " / long-horizon-demo/sort-objects.mp4"  
74+ 		src: getAssetPath ( " long-horizon-demo/sort-objects.mp4" ) , 
7475		autoplay: false , 
7576	}, 
7677	{ 
7778		title: " Sort to Drawer"  
78- 		src: " / long-horizon-demo/sort-to-drawer.mp4"  
79+ 		src: getAssetPath ( " long-horizon-demo/sort-to-drawer.mp4" ) , 
7980		autoplay: false , 
8081	}, 
8182	{ 
8283		title: " Math Calculation"  
83- 		src: " / long-horizon-demo/math-calculation.mp4"  
84+ 		src: getAssetPath ( " long-horizon-demo/math-calculation.mp4" ) , 
8485		autoplay: true , 
8586	}, 
8687]; 
0 commit comments