-
Notifications
You must be signed in to change notification settings - Fork 4
Feat/component/tech stack/DEVING-41 #22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
clyde-yoonjae
merged 5 commits into
feat/component/DEVING-9
from
feat/component/tech-stack/DEVING-41
Feb 24, 2025
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
5f50740
feat(DEVING-41): tech-Icon base์ปดํฌ๋ํธ ์์ฑ
clyde-yoonjae ba4d1ec
feat(DEVING-41): tech-Icon ์ปดํฌ๋ํธ ๊ตฌํ
clyde-yoonjae 48dbdc5
test(DEVING-41): tech-Icon Previewํ์ด์ง ์์ฑ
clyde-yoonjae 30a73a1
chore(DEVING-41): ์ค๋ณตํ์
์์
clyde-yoonjae 16d4e05
chore(DEVING-41): ์์ด์ฝ ์ปดํฌ๋ํธ ์ ๊ทผ์ฑ ๊ฐ์ฑ ๋ฐ title์ถ๊ฐ
clyde-yoonjae File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,106 @@ | ||
| import { backend, design, frontend } from '@/components/ui/Icon/iconRegistry'; | ||
| import React from 'react'; | ||
|
|
||
| export default function TechStackPage() { | ||
| return ( | ||
| <div className="mx-auto max-w-4xl space-y-12 p-8"> | ||
| {/* Frontend Section */} | ||
| <section> | ||
| <h2 className="mb-6 text-2xl font-bold">Frontend Technologies</h2> | ||
|
|
||
| {/* Core */} | ||
| <div className="mb-8 flex flex-col gap-8"> | ||
| <h3 className="text-lg font-semibold">Core</h3> | ||
| <div className="flex flex-wrap gap-4"> | ||
| <frontend.JavascriptIcon size={24} radius="lg" /> | ||
| <frontend.TypescriptIcon size={24} radius="lg" /> | ||
| <frontend.ReactIcon size={24} radius="lg" /> | ||
| <frontend.VueIcon size={24} radius="lg" /> | ||
| </div> | ||
| <div className="flex flex-wrap gap-4"> | ||
| <frontend.JavascriptIcon size={12} radius="lg" /> | ||
| <frontend.TypescriptIcon size={12} radius="lg" /> | ||
| <frontend.ReactIcon size={12} radius="lg" /> | ||
| <frontend.VueIcon size={12} radius="lg" /> | ||
| </div> | ||
| </div> | ||
|
|
||
| {/* Framework & Libraries */} | ||
| <div className="mb-8"> | ||
| <h3 className="mb-4 text-lg font-semibold">Framework & Libraries</h3> | ||
| <div className="flex flex-wrap gap-4"> | ||
| <frontend.NextIcon size={24} radius="lg" /> | ||
| <frontend.SvelteIcon size={24} radius="lg" /> | ||
| </div> | ||
| </div> | ||
|
|
||
| {/* Mobile & Others */} | ||
| <div> | ||
| <h3 className="mb-4 text-lg font-semibold">Mobile & Others</h3> | ||
| <div className="flex flex-wrap gap-4"> | ||
| <frontend.ReactNativeIcon size={24} radius="lg" /> | ||
| <frontend.FlutterIcon size={24} radius="lg" /> | ||
| <frontend.SwiftIcon size={24} radius="lg" /> | ||
| <frontend.KotlinIcon size={24} radius="lg" /> | ||
| <frontend.UnityIcon size={24} radius="lg" className="bg-black" /> | ||
| <frontend.JestIcon size={24} radius="lg" /> | ||
| </div> | ||
| </div> | ||
| </section> | ||
|
|
||
| {/* Backend Section */} | ||
| <section> | ||
| <h2 className="mb-6 text-2xl font-bold">Backend Technologies</h2> | ||
|
|
||
| {/* Language & Runtime */} | ||
| <div className="mb-8"> | ||
| <h3 className="mb-4 text-lg font-semibold">Language & Runtime</h3> | ||
| <div className="flex flex-wrap gap-4"> | ||
| <backend.JavaIcon size={24} radius="lg" /> | ||
| <backend.NodeIcon size={24} radius="lg" /> | ||
| <backend.PythonIcon size={24} radius="lg" /> | ||
| <backend.GoIcon size={24} radius="lg" /> | ||
| <backend.CIcon size={24} radius="lg" /> | ||
| </div> | ||
| </div> | ||
|
|
||
| {/* Framework */} | ||
| <div className="mb-8"> | ||
| <h3 className="mb-4 text-lg font-semibold">Framework</h3> | ||
| <div className="flex flex-wrap gap-4"> | ||
| <backend.SpringIcon size={24} radius="lg" /> | ||
| <backend.NestIcon size={24} radius="lg" /> | ||
| <backend.ExpressIcon size={24} radius="lg" /> | ||
| <backend.DjangoIcon size={24} radius="lg" /> | ||
| </div> | ||
| </div> | ||
|
|
||
| {/* Database & Infrastructure */} | ||
| <div> | ||
| <h3 className="mb-4 text-lg font-semibold"> | ||
| Database & Infrastructure | ||
| </h3> | ||
| <div className="flex flex-wrap gap-4"> | ||
| <backend.MySQLIcon size={24} radius="lg" /> | ||
| <backend.MongoDBIcon size={24} radius="lg" /> | ||
| <backend.FirebaseIcon size={24} radius="lg" /> | ||
| <backend.AWSIcon size={24} radius="lg" /> | ||
| <backend.DockerIcon size={24} radius="lg" /> | ||
| <backend.KubernetesIcon size={24} radius="lg" /> | ||
| <backend.GitIcon size={24} radius="lg" /> | ||
| </div> | ||
| </div> | ||
| </section> | ||
|
|
||
| {/* Design Tools */} | ||
| <section> | ||
| <h2 className="mb-6 text-2xl font-bold">Design Tools</h2> | ||
| <div className="flex flex-wrap items-center gap-4"> | ||
| <design.FigmaIcon size={24} radius="lg" /> | ||
| <design.ZeplinIcon size={24} radius="lg" /> | ||
| <design.SketchIcon size={24} radius="lg" /> | ||
| </div> | ||
| </section> | ||
| </div> | ||
| ); | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| import { cn } from '@/util/cn'; | ||
|
|
||
| export interface BaseIconProps { | ||
| color?: string; | ||
| size?: number; | ||
| radius?: 'none' | 'sm' | 'md' | 'lg' | 'full'; | ||
| className?: string; | ||
| path: string; | ||
| ariaLabel?: string; | ||
| title?: string; | ||
| } | ||
|
|
||
| export function BaseIcon({ | ||
| color, | ||
| size = 24, | ||
| radius = 'none', | ||
| className, | ||
| path, | ||
| ariaLabel, | ||
| title, | ||
| }: BaseIconProps) { | ||
| const radiusMap = { | ||
| none: 'rounded-none', | ||
| sm: 'rounded-sm', | ||
| md: 'rounded', | ||
| lg: 'rounded-lg', | ||
| full: 'rounded-full', | ||
| }; | ||
|
|
||
| return ( | ||
| <svg | ||
| role="img" | ||
| width={size} | ||
| height={size} | ||
| viewBox="0 0 24 24" | ||
| xmlns="http://www.w3.org/2000/svg" | ||
| fill={color} | ||
| className={cn(radiusMap[radius], className)} | ||
| aria-label={ariaLabel} | ||
| preserveAspectRatio="xMidYMid meet" | ||
| > | ||
| {title && <title>{title}</title>} | ||
| <path d={path} /> | ||
| </svg> | ||
| ); | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
๐ ๏ธ Refactor suggestion
์์ด์ฝ ํฌ๊ธฐ ์ค๋ณต ์ฝ๋๋ฅผ ์ ๊ฑฐํด์ฃผ์ธ์.
๋์ผํ ์์ด์ฝ์ด ๋ค๋ฅธ ํฌ๊ธฐ๋ก ๋ฐ๋ณต๋์ด ์์ต๋๋ค. ์ปดํฌ๋ํธ๋ก ๋ถ๋ฆฌํ์ฌ ์ฌ์ฌ์ฉ์ฑ์ ๋์ผ ์ ์์ต๋๋ค.
๐ Committable suggestion
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
์์ ํ์ด์ง๊ธฐ๋๋ฌธ์ ๋ฌด์ํด์ค
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@clyde-yoonjae ์๊ฒ ์ต๋๋ค. ์์ ํ์ด์ง์ ๋ํ ๋ฆฌ๋ทฐ ์๊ฒฌ์ ์ฒ ํํ๊ฒ ์ต๋๋ค.
โ๏ธ Learnings added