From 1c811461b7ba193148206da23f79683a3478362a Mon Sep 17 00:00:00 2001 From: Ivan Dimitrov Date: Sun, 17 Dec 2023 14:33:30 +0200 Subject: [PATCH] add gitea link --- src/app/page.tsx | 8 ++++++-- src/components/gitea-svg.tsx | 15 +++++++++++++++ 2 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 src/components/gitea-svg.tsx diff --git a/src/app/page.tsx b/src/app/page.tsx index 64d3980..97321c2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,10 +1,14 @@ -import { faGithub, faGitlab } from "@fortawesome/free-brands-svg-icons"; +import GiteaSvg from "@/components/gitea-svg"; +import { faGithub, faGitlab, faGitter } from "@fortawesome/free-brands-svg-icons"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import Link from "next/link"; const Home = () => (
-
+
+ + + diff --git a/src/components/gitea-svg.tsx b/src/components/gitea-svg.tsx new file mode 100644 index 0000000..59fcf63 --- /dev/null +++ b/src/components/gitea-svg.tsx @@ -0,0 +1,15 @@ +const GiteaSvg = () => ( + + + + + + + + + + + +); + +export default GiteaSvg;