diff --git a/src/assets/images/coconut.png b/src/assets/images/coconut.png new file mode 100644 index 0000000..c1af9a2 Binary files /dev/null and b/src/assets/images/coconut.png differ diff --git a/src/assets/images/red-panda.png b/src/assets/images/red-panda.png new file mode 100644 index 0000000..c84c111 Binary files /dev/null and b/src/assets/images/red-panda.png differ diff --git a/src/assets/images/rock.png b/src/assets/images/rock.png new file mode 100644 index 0000000..a077912 Binary files /dev/null and b/src/assets/images/rock.png differ diff --git a/src/components/random-something/RandomSomething.vue b/src/components/random-something/RandomSomething.vue index 0491b69..a09261c 100644 --- a/src/components/random-something/RandomSomething.vue +++ b/src/components/random-something/RandomSomething.vue @@ -12,21 +12,33 @@ import { addFoundEasterEgg } from "@/utilities/easteregg_handler"; import penguin_image from "@/assets/images/penguin.png"; import llama_image from "@/assets/images/llama.png"; + import rock_image from "@/assets/images/rock.png"; + import coconut_image from "@/assets/images/coconut.png"; + import red_panda_image from "@/assets/images/red-panda.png"; const { t } = useI18n({ messages: { "en": { "penguin": "This is a penguin", - "llama": "This is a llama" + "llama": "This is a llama", + "rock": "This is a rock", + "coconut": "This is a coconut", + "red panda": "This is a red panda" }, "it": { "penguin": "Questo è un pinguino", - "llama": "Questo è un lama" + "llama": "Questo è un lama", + "rock": "Questo è un sasso", + "coconut": "Questa è una noce di cocco", + "red panda": "Questo è un panda rosso" } } }); const things = [ { name: "penguin", image: penguin_image }, - { name: "llama", image: llama_image } + { name: "llama", image: llama_image }, + { name: "rock", image: rock_image }, + { name: "coconut", image: coconut_image }, + { name: "red panda", image: red_panda_image } ]; const current_name = ref(""); diff --git a/src/views/home/Home.vue b/src/views/home/Home.vue index 46343ff..b3ceec6 100644 --- a/src/views/home/Home.vue +++ b/src/views/home/Home.vue @@ -1,18 +1,30 @@