Update frontend/src/components/Home.vue
All checks were successful
deploy / build (push) Successful in 1m26s

This commit is contained in:
Mootfrost 2025-07-20 15:55:36 +03:00
parent cb8aa3ba7b
commit 4b4a2a20a5

View file

@ -3,9 +3,9 @@ import SocialBtn from "./SocialBtn.vue";
import {ref} from "vue";
import ISocialBtn from "../ISocialBtn.ts";
const socialBtns = ref<ISocialBtn[]>([
{ 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"}
])
</script>