From b618053f05a38554155a37881d556f55933fd34a Mon Sep 17 00:00:00 2001 From: DefectingCat Date: Fri, 21 Jul 2023 11:59:52 +0800 Subject: [PATCH] update projects --- app/projects/content.tsx | 30 ++++++++++++++++++++++++------ 1 file changed, 24 insertions(+), 6 deletions(-) diff --git a/app/projects/content.tsx b/app/projects/content.tsx index 753e33c..98bee0b 100644 --- a/app/projects/content.tsx +++ b/app/projects/content.tsx @@ -1,6 +1,10 @@ +import { BiPlanet } from 'react-icons/bi'; import { HiPhoto } from 'react-icons/hi2'; -import { PiGitlabLogoSimpleDuotone } from 'react-icons/pi'; -import { RiCoreosFill } from 'react-icons/ri'; +import { + PiGitlabLogoSimpleDuotone, + PiPlanetDuotone, + PiPlanetLight, +} from 'react-icons/pi'; import { SiNextdotjs, SiRedux, @@ -20,7 +24,9 @@ export const iconMap = { three: , photos: , redux: , - core: , + venus: , + pluto: , + mercury: , rust: , }; @@ -33,10 +39,22 @@ export type Project = { export const projects: Project[] = [ { - icon: 'core', - name: 'Netool UI', + icon: 'venus', + name: 'Venus', description: 'A tiny GUI for network tool.', - url: 'https://github.com/DefectingCat/v2ray-r', + url: 'https://github.com/DefectingCat/venus', + }, + { + icon: 'pluto', + name: 'Pluto', + description: 'Tcping tool', + url: 'https://github.com/DefectingCat/pluto', + }, + { + icon: 'mercury', + name: 'Mercury', + description: 'A network tool backend', + url: 'https://github.com/DefectingCat/mercury', }, { icon: 'three',