nkjoy commited on
Commit
cce33cb
·
verified ·
1 Parent(s): b562d7b

설립목적

Browse files

이용약관
정관
운영진

이렇게 메뉴 만들어줘!
- Initial Deployment

Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +237 -18
  3. prompts.txt +25 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Toxj
3
- emoji:
4
- colorFrom: gray
5
- colorTo: gray
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: toxj
3
+ emoji: 🐳
4
+ colorFrom: purple
5
+ colorTo: blue
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,238 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="ko">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>새터민들의 쉼터</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
10
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
12
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
13
+ <script src="https://unpkg.com/feather-icons"></script>
14
+ <style>
15
+ .glass-effect {
16
+ background: rgba(255, 255, 255, 0.15);
17
+ backdrop-filter: blur(10px);
18
+ -webkit-backdrop-filter: blur(10px);
19
+ border-radius: 20px;
20
+ border: 1px solid rgba(255, 255, 255, 0.18);
21
+ box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
22
+ }
23
+ .gradient-bg {
24
+ background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
25
+ }
26
+ .sparkle-btn {
27
+ position: relative;
28
+ overflow: hidden;
29
+ transition: all 0.3s ease;
30
+ }
31
+ .sparkle-btn:hover {
32
+ transform: translateY(-3px);
33
+ box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
34
+ }
35
+ .sparkle-btn::after {
36
+ content: "";
37
+ position: absolute;
38
+ top: -50%;
39
+ left: -50%;
40
+ width: 200%;
41
+ height: 200%;
42
+ background: rgba(255, 255, 255, 0.2);
43
+ transform: rotate(30deg);
44
+ transition: all 0.3s ease;
45
+ }
46
+ .sparkle-btn:hover::after {
47
+ left: 100%;
48
+ top: 100%;
49
+ }
50
+ .card-3d {
51
+ transform-style: preserve-3d;
52
+ transition: transform 0.5s ease;
53
+ }
54
+ .card-3d:hover {
55
+ transform: rotateY(10deg) rotateX(5deg) translateY(-5px);
56
+ }
57
+ </style>
58
+ </head>
59
+ <body class="min-h-screen gradient-bg text-white">
60
+ <div id="vanta-bg" class="fixed inset-0 z-0"></div>
61
+
62
+ <header class="relative z-10 py-6">
63
+ <div class="container mx-auto px-4">
64
+ <div class="flex justify-between items-center">
65
+ <div class="flex items-center">
66
+ <i data-feather="home" class="mr-2"></i>
67
+ <h1 class="text-2xl font-bold">새터민들의 쉼터</h1>
68
+ </div>
69
+ <nav class="hidden md:block">
70
+ <ul class="flex space-x-8">
71
+ <li><a href="#" class="hover:text-yellow-200 transition">홈</a></li>
72
+ <li><a href="#" class="hover:text-yellow-200 transition">커뮤니티</a></li>
73
+ <li><a href="#" class="hover:text-yellow-200 transition">정보센터</a></li>
74
+ <li><a href="#" class="hover:text-yellow-200 transition">정착지원</a></li>
75
+ <li><a href="#" class="hover:text-yellow-200 transition">문의하기</a></li>
76
+ </ul>
77
+ </nav>
78
+ <button class="md:hidden">
79
+ <i data-feather="menu"></i>
80
+ </button>
81
+ </div>
82
+ </div>
83
+ </header>
84
+
85
+ <main class="relative z-10 py-12">
86
+ <section class="container mx-auto px-4 mb-16">
87
+ <div class="glass-effect max-w-4xl mx-auto p-8 text-center" data-aos="fade-up">
88
+ <h2 class="text-4xl font-bold mb-4">새로운 시작을 함께 합니다</h2>
89
+ <p class="text-xl mb-8">대한민국에서의 새로운 삶을 위한 정보와 지원을 공유하는 공간입니다.</p>
90
+ <div class="flex justify-center space-x-4">
91
+ <button class="sparkle-btn bg-white text-purple-700 px-6 py-3 rounded-full font-semibold">커뮤니티 참여하기</button>
92
+ <button class="sparkle-btn border-2 border-white px-6 py-3 rounded-full font-semibold">더 알아보기</button>
93
+ </div>
94
+ </div>
95
+ </section>
96
+
97
+ <section class="container mx-auto px-4 mb-16">
98
+ <h2 class="text-3xl font-bold text-center mb-12">주요 서비스</h2>
99
+ <div class="grid md:grid-cols-3 gap-8">
100
+ <div class="card-3d glass-effect p-6 rounded-xl" data-aos="fade-up" data-aos-delay="100">
101
+ <div class="text-center mb-4">
102
+ <i data-feather="users" class="w-12 h-12 mx-auto"></i>
103
+ </div>
104
+ <h3 class="text-xl font-semibold mb-3 text-center">커뮤니티</h3>
105
+ <p class="text-gray-200">새터민들과의 소통과 경험 공유를 통해 서로를 돕고 위로하는 공간입니다.</p>
106
+ </div>
107
+ <div class="card-3d glass-effect p-6 rounded-xl" data-aos="fade-up" data-aos-delay="200">
108
+ <div class="text-center mb-4">
109
+ <i data-feather="book" class="w-12 h-12 mx-auto"></i>
110
+ </div>
111
+ <h3 class="text-xl font-semibold mb-3 text-center">정보센터</h3>
112
+ <p class="text-gray-200">정착에 필요한 다양한 정보와 생활 가이드를 제공합니다.</p>
113
+ </div>
114
+ <div class="card-3d glass-effect p-6 rounded-xl" data-aos="fade-up" data-aos-delay="300">
115
+ <div class="text-center mb-4">
116
+ <i data-feather="heart" class="w-12 h-12 mx-auto"></i>
117
+ </div>
118
+ <h3 class="text-xl font-semibold mb-3 text-center">정착지원</h3>
119
+ <p class="text-gray-200">새터민들을 위한 다양한 지원 프로그램과 혜택을 안내합니다.</p>
120
+ </div>
121
+ </div>
122
+ </section>
123
+
124
+ <section class="container mx-auto px-4 mb-16">
125
+ <div class="glass-effect p-8 rounded-xl">
126
+ <div class="flex flex-col md:flex-row items-center">
127
+ <div class="md:w-1/2 mb-8 md:mb-0" data-aos="fade-right">
128
+ <img src="http://static.photos/people/640x360/1" alt="새터민 커뮤니티" class="rounded-xl shadow-lg w-full">
129
+ </div>
130
+ <div class="md:w-1/2 md:pl-12" data-aos="fade-left">
131
+ <h2 class="text-3xl font-bold mb-4">함께하는 여정</h2>
132
+ <p class="mb-6">새터민들의 쉼터는 북한을 떠나 대한민국에 정착한 분들이 새로운 환경에서 겪는 어려움을 함께 나누고 해결해 나가는 공간입니다.</p>
133
+ <ul class="space-y-3">
134
+ <li class="flex items-start">
135
+ <i data-feather="check-circle" class="text-green-300 mr-2 mt-1"></i>
136
+ <span>정착 초기 필요한 생활 정보 제공</span>
137
+ </li>
138
+ <li class="flex items-start">
139
+ <i data-feather="check-circle" class="text-green-300 mr-2 mt-1"></i>
140
+ <span>경험자들의 생생한 조언과 팁</span>
141
+ </li>
142
+ <li class="flex items-start">
143
+ <i data-feather="check-circle" class="text-green-300 mr-2 mt-1"></i>
144
+ <span>정부 및 민간 지원 프로그램 안내</span>
145
+ </li>
146
+ </ul>
147
+ <button class="sparkle-btn mt-6 bg-yellow-400 text-purple-800 px-6 py-3 rounded-full font-semibold">자세히 보기</button>
148
+ </div>
149
+ </div>
150
+ </div>
151
+ </section>
152
+
153
+ <section class="container mx-auto px-4">
154
+ <h2 class="text-3xl font-bold text-center mb-12">최신 소식</h2>
155
+ <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-6">
156
+ <div class="card-3d glass-effect rounded-xl overflow-hidden" data-aos="zoom-in" data-aos-delay="100">
157
+ <img src="http://static.photos/education/640x360/1" alt="교육 프로그램" class="w-full h-48 object-cover">
158
+ <div class="p-6">
159
+ <h3 class="font-bold text-xl mb-2">새터민 교육 지원 프로그램</h3>
160
+ <p class="text-gray-200 mb-4">대한민국 사회 적응을 위한 다양한 교육 프로그램을 소개합니다.</p>
161
+ <a href="#" class="text-yellow-300 hover:text-yellow-200 flex items-center">
162
+ 더보기 <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
163
+ </a>
164
+ </div>
165
+ </div>
166
+ <div class="card-3d glass-effect rounded-xl overflow-hidden" data-aos="zoom-in" data-aos-delay="200">
167
+ <img src="http://static.photos/workspace/640x360/2" alt="취업 지원" class="w-full h-48 object-cover">
168
+ <div class="p-6">
169
+ <h3 class="font-bold text-xl mb-2">취업 지원 워크숍</h3>
170
+ <p class="text-gray-200 mb-4">새터민을 위한 취업 지원 워크숍이 개최됩니다.</p>
171
+ <a href="#" class="text-yellow-300 hover:text-yellow-200 flex items-center">
172
+ 더보기 <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
173
+ </a>
174
+ </div>
175
+ </div>
176
+ <div class="card-3d glass-effect rounded-xl overflow-hidden" data-aos="zoom-in" data-aos-delay="300">
177
+ <img src="http://static.photos/community/640x360/3" alt="커뮤니티 모임" class="w-full h-48 object-cover">
178
+ <div class="p-6">
179
+ <h3 class="font-bold text-xl mb-2">정기 모임 안내</h3>
180
+ <p class="text-gray-200 mb-4">지역별 새터민 정기 모임 일정을 확인하세요.</p>
181
+ <a href="#" class="text-yellow-300 hover:text-yellow-200 flex items-center">
182
+ 더보기 <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
183
+ </a>
184
+ </div>
185
+ </div>
186
+ </div>
187
+ </section>
188
+ </main>
189
+
190
+ <footer class="relative z-10 py-8 mt-16 glass-effect">
191
+ <div class="container mx-auto px-4">
192
+ <div class="flex flex-col md:flex-row justify-between items-center">
193
+ <div class="mb-6 md:mb-0">
194
+ <h2 class="text-xl font-bold flex items-center">
195
+ <i data-feather="home" class="mr-2"></i> 새터민들의 쉼터
196
+ </h2>
197
+ <p class="mt-2 text-sm">함께하는 새로운 시작</p>
198
+ </div>
199
+ <div class="flex space-x-6">
200
+ <a href="#" class="hover:text-yellow-200 transition"><i data-feather="facebook"></i></a>
201
+ <a href="#" class="hover:text-yellow-200 transition"><i data-feather="twitter"></i></a>
202
+ <a href="#" class="hover:text-yellow-200 transition"><i data-feather="instagram"></i></a>
203
+ <a href="#" class="hover:text-yellow-200 transition"><i data-feather="mail"></i></a>
204
+ </div>
205
+ </div>
206
+ <div class="border-t border-gray-700 mt-8 pt-8 text-center text-sm">
207
+ <p>© 2023 새터민들의 쉼터. All rights reserved.</p>
208
+ </div>
209
+ </div>
210
+ </footer>
211
+
212
+ <script>
213
+ VANTA.GLOBE({
214
+ el: "#vanta-bg",
215
+ mouseControls: true,
216
+ touchControls: true,
217
+ gyroControls: false,
218
+ minHeight: 200.00,
219
+ minWidth: 200.00,
220
+ scale: 1.00,
221
+ scaleMobile: 1.00,
222
+ color: 0x667eea,
223
+ backgroundColor: 0x0,
224
+ size: 0.8
225
+ });
226
+ </script>
227
+ <script>
228
+ AOS.init({
229
+ duration: 800,
230
+ easing: 'ease-in-out',
231
+ once: true
232
+ });
233
+ </script>
234
+ <script>
235
+ feather.replace();
236
+ </script>
237
+ </body>
238
  </html>
prompts.txt ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 새터민들의쉼터 사이트 만들거야 ! 디자인은 입체감과 투명 유리 효과 를 주고 ! 색은 그라데이션으로 넣어주고 버튼들은 애니메이션 넣어서 반짝이도록 해줘 !
2
+ "새터민들의 쉼터"는 고향(북한)을 탈북하여 대한민국에 입국한 새터민들이 새로운 환경에서 제2의 삶을 살아가면서 사회,경제,문화적으로 어려움을 겪으면서도 정착을 해나가는 과정에서 많은 정보를 공유하고 대한민국 국민으로써 열심히 살아가기 위한 온라인 커뮤니티입니다.
3
+
4
+ 설립목적
5
+ 이용약관
6
+ 정관
7
+ 운영진
8
+
9
+ 이렇게 메뉴 만들어줘!
10
+
11
+
12
+ 설립목적
13
+ 이용약관
14
+ 정관
15
+ 운영진
16
+
17
+ 이렇게 메뉴 만들어줘!
18
+
19
+
20
+ 설립목적
21
+ 이용약관
22
+ 정관
23
+ 운영진
24
+
25
+ 이렇게 메뉴 만들어줘!