nkjoy commited on
Commit
d4903fc
·
verified ·
1 Parent(s): 5a84afa

이거 좀더 멋지게 해줘봐

Browse files
Files changed (2) hide show
  1. README.md +8 -5
  2. index.html +127 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: 2fdmoff2ytk
3
- emoji: 🦀
4
- colorFrom: indigo
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: --------------2fdmoff2ytk
3
+ colorFrom: pink
4
+ colorTo: purple
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://huggingface.co/deepsite).
index.html CHANGED
@@ -1,19 +1,128 @@
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>JM WEB STUDIO | AI Studio Dashboard</title>
7
+
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap" rel="stylesheet">
10
+
11
+ <script>
12
+ tailwind.config = {
13
+ theme: {
14
+ extend: {
15
+ fontFamily: {
16
+ sans: ['Plus Jakarta Sans','sans-serif'],
17
+ },
18
+ colors: {
19
+ bg: '#0d0d0e',
20
+ panel: '#121214',
21
+ accent: '#FF4D97',
22
+ neon: '#7C3AED',
23
+ cyan: '#06B6D4'
24
+ },
25
+ boxShadow: {
26
+ neu: '12px 12px 24px #050506, -12px -12px 24px #1f1f22',
27
+ inset: 'inset 6px 6px 12px #050506, inset -6px -6px 12px #1f1f22'
28
+ }
29
+ }
30
+ }
31
+ }
32
+ </script>
33
+
34
+ <style>
35
+ body { background:#0d0d0e; }
36
+ .glass {
37
+ background: rgba(18,18,20,.85);
38
+ backdrop-filter: blur(20px);
39
+ border:1px solid rgba(255,255,255,.06);
40
+ }
41
+ </style>
42
+ </head>
43
+
44
+ <body class="text-zinc-100 font-sans text-[17px]">
45
+
46
+ <div class="flex h-screen">
47
+
48
+ <!-- Sidebar -->
49
+ <aside class="w-72 p-8 glass">
50
+ <h1 class="text-3xl font-extrabold mb-12">
51
+ <span class="bg-gradient-to-r from-pink-500 to-violet-500 bg-clip-text text-transparent">
52
+ JM WEB STUDIO
53
+ </span>
54
+ </h1>
55
+
56
+ <nav class="space-y-4 text-lg">
57
+ <a class="block p-4 rounded-2xl hover:bg-zinc-800 transition">Dashboard</a>
58
+ <a class="block p-4 rounded-2xl hover:bg-zinc-800 transition">Website Builder</a>
59
+ <a class="block p-4 rounded-2xl hover:bg-zinc-800 transition">Script / Story AI</a>
60
+ <a class="block p-4 rounded-2xl hover:bg-zinc-800 transition">Music AI</a>
61
+ <a class="block p-4 rounded-2xl hover:bg-zinc-800 transition">Video AI</a>
62
+ <a class="block p-4 rounded-2xl hover:bg-zinc-800 transition">API / Docker</a>
63
+ </nav>
64
+ </aside>
65
+
66
+ <!-- Main -->
67
+ <main class="flex-1 p-10 overflow-y-auto">
68
+
69
+ <!-- Header -->
70
+ <div class="flex justify-between items-center mb-10">
71
+ <h2 class="text-3xl font-bold">AI Studio Dashboard</h2>
72
+ <button class="px-8 py-4 rounded-full bg-gradient-to-r from-pink-500 to-violet-500 font-semibold shadow-lg hover:scale-105 transition">
73
+ + New Project
74
+ </button>
75
+ </div>
76
+
77
+ <!-- Cards -->
78
+ <section class="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-4 gap-8 mb-16">
79
+ <div class="p-8 rounded-[2rem] bg-panel shadow-neu hover:-translate-y-2 transition">
80
+ <h3 class="text-2xl font-semibold mb-2">Website Builder</h3>
81
+ <p class="text-zinc-400 text-lg">프롬프트 기반 웹 생성</p>
82
+ </div>
83
+ <div class="p-8 rounded-[2rem] bg-panel shadow-neu hover:-translate-y-2 transition">
84
+ <h3 class="text-2xl font-semibold mb-2">Script AI</h3>
85
+ <p class="text-zinc-400 text-lg">소설 · 영화 대본</p>
86
+ </div>
87
+ <div class="p-8 rounded-[2rem] bg-panel shadow-neu hover:-translate-y-2 transition">
88
+ <h3 class="text-2xl font-semibold mb-2">Music AI</h3>
89
+ <p class="text-zinc-400 text-lg">Suno 스타일 음악 생성</p>
90
+ </div>
91
+ <div class="p-8 rounded-[2rem] bg-panel shadow-neu hover:-translate-y-2 transition">
92
+ <h3 class="text-2xl font-semibold mb-2">Video AI</h3>
93
+ <p class="text-zinc-400 text-lg">영상 자동 제작</p>
94
+ </div>
95
+ </section>
96
+
97
+ <!-- Builder -->
98
+ <section class="grid grid-cols-1 xl:grid-cols-2 gap-10">
99
+
100
+ <!-- Left -->
101
+ <div class="p-8 rounded-[2.5rem] bg-panel shadow-neu">
102
+ <h3 class="text-2xl font-bold mb-6">AI Prompt</h3>
103
+ <textarea
104
+ class="w-full h-48 p-6 rounded-3xl bg-panel shadow-inset text-lg focus:outline-none"
105
+ placeholder="원하는 웹 / 음악 / 영상 설명을 입력하세요..."
106
+ ></textarea>
107
+
108
+ <button class="mt-6 w-full py-4 rounded-full bg-gradient-to-r from-cyan-400 to-violet-500 font-semibold hover:scale-105 transition">
109
+ Generate
110
+ </button>
111
+ </div>
112
+
113
+ <!-- Right -->
114
+ <div class="p-8 rounded-[2.5rem] bg-panel shadow-neu">
115
+ <h3 class="text-2xl font-bold mb-6">Live Preview</h3>
116
+ <div class="h-72 rounded-3xl bg-zinc-900 flex items-center justify-center text-zinc-500 text-lg">
117
+ AI 결과 미리보기 영역
118
+ </div>
119
+ </div>
120
+
121
+ </section>
122
+
123
+ </main>
124
+ </div>
125
+
126
+ <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
127
+ </body>
128
  </html>