From 4b4a2a20a5b1848e91323ecaf256d8a95edb08f1 Mon Sep 17 00:00:00 2001 From: Mootfrost Date: Sun, 20 Jul 2025 15:55:36 +0300 Subject: [PATCH] Update frontend/src/components/Home.vue --- frontend/src/components/Home.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/Home.vue b/frontend/src/components/Home.vue index 2cae57d..43efab2 100644 --- a/frontend/src/components/Home.vue +++ b/frontend/src/components/Home.vue @@ -3,9 +3,9 @@ import SocialBtn from "./SocialBtn.vue"; import {ref} from "vue"; import ISocialBtn from "../ISocialBtn.ts"; const socialBtns = ref([ - { id: 0, name: "github", link: "https://github.com/Mootfrost777", color: "#c9510c"}, + { id: 0, name: "github", link: "https://github.com/Mootfrost", color: "#c9510c"}, { id: 1, name: "telegram", link: "https://t.me/mootfrost", color: "#1f9bda"}, - { id: 2, name: "gitea", link: "https://git.mootfrost.dev/Mootfrost777", color: "#609926"} + { id: 2, name: "gitea", link: "https://git.mootfrost.dev/Mootfrost", color: "#609926"} ])