diff --git a/public/img/wall0.webp b/public/img/wall0.webp index 7147887..7907f10 100755 Binary files a/public/img/wall0.webp and b/public/img/wall0.webp differ diff --git a/public/img/wall1.webp b/public/img/wall1.webp index a22aedc..7027e21 100755 Binary files a/public/img/wall1.webp and b/public/img/wall1.webp differ diff --git a/public/img/wall2.webp b/public/img/wall2.webp old mode 100755 new mode 100644 index 5485922..1dc7ca4 Binary files a/public/img/wall2.webp and b/public/img/wall2.webp differ diff --git a/public/img/wall3.webp b/public/img/wall3.webp old mode 100755 new mode 100644 index ce7d960..4c16403 Binary files a/public/img/wall3.webp and b/public/img/wall3.webp differ diff --git a/public/img/wall4.webp b/public/img/wall4.webp old mode 100755 new mode 100644 index a7d8066..f4830eb Binary files a/public/img/wall4.webp and b/public/img/wall4.webp differ diff --git a/public/img/wall5.webp b/public/img/wall5.webp new file mode 100644 index 0000000..a9d3704 Binary files /dev/null and b/public/img/wall5.webp differ diff --git a/src/BarraSuperior.tsx b/src/BarraSuperior.tsx index b41644a..b0685b2 100755 --- a/src/BarraSuperior.tsx +++ b/src/BarraSuperior.tsx @@ -2,7 +2,7 @@ import { estilosGlobales } from "./Estilos"; import { StyleSheet, css } from "aphrodite"; import { numWallpaper, setNumWallpaper } from "./Store"; -const totalWallpapers = 4; +const totalWallpapers = 5; const e = StyleSheet.create({ contCambiador: { diff --git a/src/Wallpaper.tsx b/src/Wallpaper.tsx index d7710da..ccb59eb 100755 --- a/src/Wallpaper.tsx +++ b/src/Wallpaper.tsx @@ -1,6 +1,6 @@ import { StyleSheet, css } from "aphrodite"; import { numWallpaper } from "./Store"; -import { createSignal, createMemo, createEffect, createState } from "solid-js"; +import { createEffect, createState } from "solid-js"; const duracionTransicion = 250; @@ -57,11 +57,6 @@ export function Wallpaper() { img.src = url; }); - const dummyMemo = () => { - console.log("Memo!"); - return estilosRaw; - }; - return