Skip to content

Commit 9826ace

Browse files
committed
new changes
1 parent 967b917 commit 9826ace

File tree

4 files changed

+0
-24
lines changed

4 files changed

+0
-24
lines changed

README.md

-4
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,6 @@ Este proyecto está desarrollado utilizando las siguientes tecnologías:
4444
```
4545
Este comando te permite previsualizar la aplicación construida antes de la implementación.
4646

47-
**Contribución:**
48-
49-
¡Estamos abiertos a contribuciones! Si encuentras problemas o tienes ideas para mejorar CryptoCraft, no dudes en abrir un problema o enviar un pull request.
50-
5147
**Licencia:**
5248

5349
Este proyecto está bajo la Licencia [MIT](LICENSE), lo que significa que puedes usar, modificar y distribuir el código como desees.

index.html

-18
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,5 @@
99
<body>
1010
<div id="root"></div>
1111
<script type="module" src="/src/main.jsx"></script>
12-
<script>
13-
window.addEventListener('mouseover', initLandbot, { once: true });
14-
window.addEventListener('touchstart', initLandbot, { once: true });
15-
var myLandbot;
16-
function initLandbot() {
17-
if (!myLandbot) {
18-
var s = document.createElement('script');s.type = 'text/javascript';s.async = true;
19-
s.addEventListener('load', function() {
20-
myLandbot = new Landbot.Popup({
21-
configUrl: 'https://storage.googleapis.com/landbot.online/v3/H-1728846-K6ASJDOPZX5DS3N4/index.json',
22-
});
23-
});
24-
s.src = 'https://cdn.landbot.io/landbot-3/landbot-3.0.0.js';
25-
var x = document.getElementsByTagName('script')[0];
26-
x.parentNode.insertBefore(s, x);
27-
}
28-
}
29-
</script>
3012
</body>
3113
</html>

src/main.jsx

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import React from 'react'
22
import ReactDOM from 'react-dom/client'
33
import App from './App.jsx'
4-
import './styles/normalize.css'
54

65
ReactDOM.createRoot(document.getElementById('root')).render(
76
<React.StrictMode>

src/styles/normalize.css

-1
This file was deleted.

0 commit comments

Comments
 (0)