diff --git a/public/img/back.png b/public/img/back.png deleted file mode 100644 index d24572c..0000000 Binary files a/public/img/back.png and /dev/null differ diff --git a/public/img/back2.png b/public/img/back2.png deleted file mode 100644 index ea7e815..0000000 Binary files a/public/img/back2.png and /dev/null differ diff --git a/public/img/back2_small.png b/public/img/back2_small.png deleted file mode 100644 index 7251050..0000000 Binary files a/public/img/back2_small.png and /dev/null differ diff --git a/public/img/back_alt.png b/public/img/back_alt.png deleted file mode 100644 index 20208c4..0000000 Binary files a/public/img/back_alt.png and /dev/null differ diff --git a/public/img/background.png b/public/img/background.png deleted file mode 100644 index c26cd7c..0000000 Binary files a/public/img/background.png and /dev/null differ diff --git a/public/img/header.png b/public/img/header.png deleted file mode 100644 index 73c725b..0000000 Binary files a/public/img/header.png and /dev/null differ diff --git a/public/img/header_small.png b/public/img/header_small.png deleted file mode 100644 index 409f211..0000000 Binary files a/public/img/header_small.png and /dev/null differ diff --git a/src/components/HelloWorld.vue b/src/components/HelloWorld.vue deleted file mode 100644 index 1f3455b..0000000 --- a/src/components/HelloWorld.vue +++ /dev/null @@ -1,43 +0,0 @@ - - - - - diff --git a/src/components/TheWelcome.vue b/src/components/TheWelcome.vue deleted file mode 100644 index 36f8888..0000000 --- a/src/components/TheWelcome.vue +++ /dev/null @@ -1,9 +0,0 @@ - - - diff --git a/src/components/WelcomeItem.vue b/src/components/WelcomeItem.vue deleted file mode 100644 index ba0def3..0000000 --- a/src/components/WelcomeItem.vue +++ /dev/null @@ -1,86 +0,0 @@ - - - diff --git a/src/components/icons/IconCommunity.vue b/src/components/icons/IconCommunity.vue deleted file mode 100644 index 2dc8b05..0000000 --- a/src/components/icons/IconCommunity.vue +++ /dev/null @@ -1,7 +0,0 @@ - diff --git a/src/components/icons/IconDocumentation.vue b/src/components/icons/IconDocumentation.vue deleted file mode 100644 index 6d4791c..0000000 --- a/src/components/icons/IconDocumentation.vue +++ /dev/null @@ -1,7 +0,0 @@ - diff --git a/src/components/icons/IconEcosystem.vue b/src/components/icons/IconEcosystem.vue deleted file mode 100644 index c3a4f07..0000000 --- a/src/components/icons/IconEcosystem.vue +++ /dev/null @@ -1,7 +0,0 @@ - diff --git a/src/components/icons/IconSupport.vue b/src/components/icons/IconSupport.vue deleted file mode 100644 index 7452834..0000000 --- a/src/components/icons/IconSupport.vue +++ /dev/null @@ -1,7 +0,0 @@ - diff --git a/src/components/icons/IconTooling.vue b/src/components/icons/IconTooling.vue deleted file mode 100644 index 660598d..0000000 --- a/src/components/icons/IconTooling.vue +++ /dev/null @@ -1,19 +0,0 @@ - - diff --git a/src/stores/counter.ts b/src/stores/counter.ts deleted file mode 100644 index 374b4d0..0000000 --- a/src/stores/counter.ts +++ /dev/null @@ -1,12 +0,0 @@ -import { ref, computed } from "vue"; -import { defineStore } from "pinia"; - -export const useCounterStore = defineStore("counter", () => { - const count = ref(0); - const doubleCount = computed(() => count.value * 2); - function increment() { - count.value++; - } - - return { count, doubleCount, increment }; -});