diff --git a/src/react-components/create-object-dialog.js b/src/react-components/create-object-dialog.js index 5ccfe2ce692a234fff6e76d8657516c1ac1d8816..6fa624612dcf4eadb658fa7f74f069983a9aeb53 100644 --- a/src/react-components/create-object-dialog.js +++ b/src/react-components/create-object-dialog.js @@ -15,12 +15,33 @@ const attributionHostnames = { const DEFAULT_OBJECT_URL = "https://asset-bundles-prod.reticulum.io/interactables/Ducky/DuckyMesh-438ff8e022.gltf"; const isMobile = AFRAME.utils.device.isMobile(); -const instructions = "Paste a URL or upload a file."; -const desktopTips = "Tip: You can paste links directly into Hubs with Ctrl+V"; -const mobileInstructions = <div>{instructions}</div>; +const instructions = "Paste a URL to an image, video, model, or upload a file."; +const desktopTips = "Tip: You can paste media directly into Hubs with Ctrl+V"; +const references = ( + <span> + For models, try{" "} + <a href="https://sketchfab.com/search?features=downloadable&type=models" target="_blank" rel="noopener noreferrer"> + Sketchfab + </a>,{" "} + <a href="http://poly.google.com/" target="_blank" rel="noopener noreferrer"> + Google Poly + </a>, or our{" "} + <a href="https://sketchfab.com/mozillareality" target="_blank" rel="noopener noreferrer"> + collection + </a>. + </span> +); + +const mobileInstructions = ( + <div> + <p>{instructions}</p> + <p>{references}</p> + </div> +); const desktopInstructions = ( <div> <p>{instructions}</p> + <p>{references}</p> <p>{desktopTips}</p> </div> );