yoon2566 commited on
Commit
d30fb37
ยท
verified ยท
1 Parent(s): 4b53358

Upload 2 files

Browse files
Files changed (2) hide show
  1. 1.jpg +0 -0
  2. app.py +35 -0
1.jpg ADDED
app.py ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ tab_contents = {
4
+ "์†Œ๊ฐœ": {
5
+ "image": "1.jpg",
6
+ "text": "์•ˆ๋…•ํ•˜์„ธ์š”! ์ €๋Š” ์—ด์ •์ ์ธ ์†Œํ”„ํŠธ์›จ์–ด ๊ฐœ๋ฐœ์ž์ž…๋‹ˆ๋‹ค."
7
+ },
8
+ "์ฝ”๋”ฉํ”„๋กœ์ ํŠธ": {
9
+ "image": "1.jpg",
10
+ "text": "1. AI ์ฑ—๋ด‡ ๊ฐœ๋ฐœ\n2. ์˜จ๋ผ์ธ ์‡ผํ•‘๋ชฐ\n3. ๋ชจ๋ฐ”์ผ ํ”ผํŠธ๋‹ˆ์Šค ์•ฑ"
11
+ },
12
+ "์Šคํ‚ฌ": {
13
+ "image": "1.jpg",
14
+ "text": "Python, JavaScript, React, Node.js, SQL, Git"
15
+ },
16
+ "๊ฒฝ๋ ฅ": {
17
+ "image": "1.jpg",
18
+ "text": "ABC ๊ธฐ์—… - ์†Œํ”„ํŠธ์›จ์–ด ์—”์ง€๋‹ˆ์–ด (2020-ํ˜„์žฌ)\nXYZ ์Šคํƒ€ํŠธ์—… - ์ธํ„ด ๊ฐœ๋ฐœ์ž (2019)"
19
+ },
20
+ "์—ฐ๋ฝ์ฒ˜": {
21
+ "image": "1.jpg",
22
+ "text": "์ด๋ฉ”์ผ: [email protected]\n๋งํฌ๋“œ์ธ: linkedin.com/in/yourprofile"
23
+ }
24
+ }
25
+
26
+ with gr.Blocks() as demo:
27
+ gr.Markdown("# ๊ฐœ์ธ ํฌํŠธํด๋ฆฌ์˜ค")
28
+
29
+ with gr.Tabs() as tabs:
30
+ for tab_name in ["์†Œ๊ฐœ", "์ฝ”๋”ฉํ”„๋กœ์ ํŠธ", "์Šคํ‚ฌ", "๊ฒฝ๋ ฅ", "์—ฐ๋ฝ์ฒ˜"]:
31
+ with gr.Tab(tab_name):
32
+ gr.Image(tab_contents[tab_name]["image"], label=f"{tab_name} ์ด๋ฏธ์ง€")
33
+ gr.Textbox(value=tab_contents[tab_name]["text"], label=f"{tab_name} ๋‚ด์šฉ", lines=5)
34
+
35
+ demo.launch(share=True)