CHORE(test): specify skills

- Update skills section
- Add skill details
This commit is contained in:
2025-11-24 20:16:28 +09:00
parent 211635f786
commit ff2810710c
2 changed files with 14 additions and 14 deletions

View File

@@ -13,7 +13,7 @@ commonLabels:
# 이미지 태그 설정 # 이미지 태그 설정
images: images:
- name: ghcr.io/mayne0213/portfolio - name: ghcr.io/mayne0213/portfolio
newTag: latest newTag:
patchesStrategicMerge: patchesStrategicMerge:
- deployment-patch.yaml - deployment-patch.yaml

View File

@@ -1,6 +1,6 @@
import { Card, CardTitle } from '@/components/ui/card'; import { Card, CardTitle } from '@/components/ui/card';
import { Separator } from '@/components/ui/separator'; import { Separator } from '@/components/ui/separator';
import { Code, Server, Layout, LucideIcon } from 'lucide-react'; import { Code, Server, Layout, Globe, Router, TestTube2, LucideIcon } from 'lucide-react';
import SectionHeader from './section-header'; import SectionHeader from './section-header';
interface SkillCardProps { interface SkillCardProps {
@@ -68,22 +68,22 @@ export default function Skills() {
skills={['Git', 'Docker', 'AWS', 'CI/CD']} skills={['Git', 'Docker', 'AWS', 'CI/CD']}
/> />
<SkillCard <SkillCard
icon={Layout} icon={TestTube2}
title="DevOps & Tools" title=" Software Testing"
description="Managing deployment pipelines and development workflows" description="End to End & Unit Tests, building high rate requests scenarios (Stress Tests)."
skills={['Git', 'Docker', 'AWS', 'CI/CD']} skills={['Jest', 'Cypress', 'Puppeteer', 'Playwright']}
/> />
<SkillCard <SkillCard
icon={Layout} icon={Globe}
title="DevOps & Tools" title="Performance & Digital Presence"
description="Managing deployment pipelines and development workflows" description="Performance Testing, Digital Presence, SEO, Accessibility, and more."
skills={['Git', 'Docker', 'AWS', 'CI/CD']} skills={['Lighthouse', 'Google Lighthouse', 'Google Search Console', 'Google Analytics', 'Google Tag Manager']}
/> />
<SkillCard <SkillCard
icon={Layout} icon={Router}
title="DevOps & Tools" title="Web Hosting"
description="Managing deployment pipelines and development workflows" description="Web Hosting, Cloud Computing, and more."
skills={['Git', 'Docker', 'AWS', 'CI/CD']} skills={['AWS', 'DigitalOcean', 'Vercel', 'Netlify', 'Cloudflare']}
/> />
</div> </div>
</main> </main>