Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -72,15 +72,26 @@ h1 {
|
|
72 |
.footer-content {
|
73 |
text-align: center;
|
74 |
margin-top: 2rem;
|
|
|
75 |
font-family: 'Pretendard', sans-serif;
|
|
|
|
|
76 |
}
|
77 |
-
.
|
78 |
-
color: #EA580C;
|
79 |
-
|
|
|
|
|
80 |
font-weight: 500;
|
|
|
|
|
|
|
|
|
81 |
}
|
82 |
-
.
|
83 |
-
|
|
|
|
|
84 |
}
|
85 |
'''
|
86 |
|
@@ -116,20 +127,13 @@ with gr.Blocks(
|
|
116 |
gr.HTML(
|
117 |
"""
|
118 |
<div class='footer-content'>
|
119 |
-
|
120 |
-
|
121 |
-
<a href='https://finalendai.com' target='_blank'
|
122 |
-
style='background-color: #EA580C;
|
123 |
-
color: white;
|
124 |
-
padding: 8px 16px;
|
125 |
-
border-radius: 6px;
|
126 |
-
font-weight: 500;
|
127 |
-
text-decoration: none;
|
128 |
-
display: inline-block;
|
129 |
-
transition: background-color 0.2s;'>
|
130 |
끝장AI 방문하기
|
131 |
</a>
|
132 |
-
|
|
|
|
|
133 |
</div>
|
134 |
"""
|
135 |
)
|
|
|
72 |
.footer-content {
|
73 |
text-align: center;
|
74 |
margin-top: 2rem;
|
75 |
+
padding: 2rem 1rem;
|
76 |
font-family: 'Pretendard', sans-serif;
|
77 |
+
background-color: #F9FAFB;
|
78 |
+
border-radius: 0.5rem;
|
79 |
}
|
80 |
+
.visit-button {
|
81 |
+
background-color: #EA580C;
|
82 |
+
color: white;
|
83 |
+
padding: 0.75rem 1.5rem;
|
84 |
+
border-radius: 0.5rem;
|
85 |
font-weight: 500;
|
86 |
+
text-decoration: none;
|
87 |
+
display: inline-block;
|
88 |
+
margin-top: 1rem;
|
89 |
+
transition: all 0.2s ease-in-out;
|
90 |
}
|
91 |
+
.visit-button:hover {
|
92 |
+
background-color: #C2410C;
|
93 |
+
transform: translateY(-1px);
|
94 |
+
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
|
95 |
}
|
96 |
'''
|
97 |
|
|
|
127 |
gr.HTML(
|
128 |
"""
|
129 |
<div class='footer-content'>
|
130 |
+
<p style='font-size: 1.1rem; font-weight: 500; color: #1F2937;'>끝장AI가 제공하는 고급 AI 도구를 더 경험하고 싶으신가요?</p>
|
131 |
+
<a href='https://finalendai.com' target='_blank' class='visit-button' style='color: white !important;'>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
끝장AI 방문하기
|
133 |
</a>
|
134 |
+
<p style='margin-top: 1.5rem; color: #6B7280; font-size: 0.9rem;'>
|
135 |
+
© 2024 끝장AI. All rights reserved.
|
136 |
+
</p>
|
137 |
</div>
|
138 |
"""
|
139 |
)
|