ginipick commited on
Commit
0c9f0c6
Β·
verified Β·
1 Parent(s): f8942df

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +145 -15
index.html CHANGED
@@ -4,19 +4,56 @@
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
  <title>GiniGen AI</title>
7
- </head>
8
- <body style="background: linear-gradient(135deg, #fef9f3 0%, #f0e6fa 50%, #e6f0fa 100%); margin: 0; padding: 40px;">
9
-
10
- <div style="text-align: center; margin: 20px 0;">
11
- <h3 style="color: #6b5b7a; margin-bottom: 15px;">GiniGen AI</h3>
12
- <a href="https://ginigen.ai/en" target="_blank">
13
- <img src="screenshot.png"
14
- style="width: 100%; max-width: 900px; border-radius: 12px; box-shadow: 0 4px 15px rgba(0,0,0,0.2); cursor: pointer;"
15
- alt="GiniGen AI Preview">
16
- </a>
17
- <p style="margin-top: 15px;">
18
- <a href="https://ginigen.ai/en" target="_blank" style="
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  display: inline-block;
 
20
  padding: 15px 40px;
21
  background: linear-gradient(90deg, #6b5b7a, #8b7b9b);
22
  color: white;
@@ -25,11 +62,104 @@
25
  font-weight: 600;
26
  font-size: 1.1rem;
27
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
28
- ">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  Visit GiniGen AI
30
  </a>
31
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  </div>
33
 
34
  </body>
35
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  <meta charset="UTF-8">
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
  <title>GiniGen AI</title>
7
+ <style>
8
+ * {
9
+ margin: 0;
10
+ padding: 0;
11
+ box-sizing: border-box;
12
+ }
13
+ body {
14
+ background: linear-gradient(135deg, #fef9f3 0%, #f0e6fa 50%, #e6f0fa 100%);
15
+ min-height: 100vh;
16
+ padding: 40px;
17
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
18
+ }
19
+ .header {
20
+ text-align: center;
21
+ margin-bottom: 30px;
22
+ }
23
+ .header h1 {
24
+ color: #6b5b7a;
25
+ font-size: 2.5rem;
26
+ margin-bottom: 10px;
27
+ }
28
+ .header p {
29
+ color: #8b7b9b;
30
+ font-size: 1.1rem;
31
+ }
32
+ .container {
33
+ display: flex;
34
+ gap: 40px;
35
+ max-width: 1400px;
36
+ margin: 0 auto;
37
+ align-items: flex-start;
38
+ }
39
+ .left-section {
40
+ flex: 1;
41
+ text-align: center;
42
+ }
43
+ .left-section img {
44
+ width: 100%;
45
+ max-width: 600px;
46
+ border-radius: 16px;
47
+ box-shadow: 0 8px 30px rgba(0,0,0,0.15);
48
+ cursor: pointer;
49
+ transition: transform 0.3s ease;
50
+ }
51
+ .left-section img:hover {
52
+ transform: scale(1.02);
53
+ }
54
+ .visit-btn {
55
  display: inline-block;
56
+ margin-top: 20px;
57
  padding: 15px 40px;
58
  background: linear-gradient(90deg, #6b5b7a, #8b7b9b);
59
  color: white;
 
62
  font-weight: 600;
63
  font-size: 1.1rem;
64
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
65
+ transition: transform 0.3s ease;
66
+ }
67
+ .visit-btn:hover {
68
+ transform: translateY(-3px);
69
+ }
70
+ .right-section {
71
+ flex: 1;
72
+ background: white;
73
+ border-radius: 16px;
74
+ padding: 30px;
75
+ box-shadow: 0 8px 30px rgba(0,0,0,0.1);
76
+ }
77
+ .right-section h2 {
78
+ color: #6b5b7a;
79
+ font-size: 1.5rem;
80
+ margin-bottom: 20px;
81
+ text-align: center;
82
+ }
83
+ .service-list {
84
+ list-style: none;
85
+ }
86
+ .service-list li {
87
+ padding: 12px 15px;
88
+ margin-bottom: 10px;
89
+ background: linear-gradient(135deg, #f8f4ff 0%, #f0f4ff 100%);
90
+ border-radius: 10px;
91
+ color: #5a4a6a;
92
+ font-size: 0.95rem;
93
+ display: flex;
94
+ align-items: center;
95
+ gap: 10px;
96
+ transition: transform 0.2s ease, box-shadow 0.2s ease;
97
+ }
98
+ .service-list li:hover {
99
+ transform: translateX(5px);
100
+ box-shadow: 0 4px 15px rgba(107, 91, 122, 0.15);
101
+ }
102
+ .service-icon {
103
+ font-size: 1.3rem;
104
+ }
105
+ @media (max-width: 900px) {
106
+ .container {
107
+ flex-direction: column;
108
+ }
109
+ }
110
+ </style>
111
+ </head>
112
+ <body>
113
+
114
+ <div class="header">
115
+ <h1>GiniGen AI</h1>
116
+ <p>All-in-One AI Creative Platform</p>
117
+ </div>
118
+
119
+ <div class="container">
120
+ <div class="left-section">
121
+ <a href="https://ginigen.ai/en" target="_blank">
122
+ <img src="screenshot.png" alt="GiniGen AI Preview">
123
+ </a>
124
+ <br>
125
+ <a href="https://ginigen.ai/en" target="_blank" class="visit-btn">
126
  Visit GiniGen AI
127
  </a>
128
+ </div>
129
+
130
+ <div class="right-section">
131
+ <h2>13 AI Services</h2>
132
+ <ul class="service-list">
133
+ <li><span class="service-icon">🎨</span> Image Generation & Editing</li>
134
+ <li><span class="service-icon">🎬</span> Image to Video Generation</li>
135
+ <li><span class="service-icon">🎀</span> Voice Clone / TTS</li>
136
+ <li><span class="service-icon">🎡</span> Music & Song Generation</li>
137
+ <li><span class="service-icon">πŸ‘„</span> Lip-Sync Video (Image + Audio)</li>
138
+ <li><span class="service-icon">πŸ“°</span> Card News Generation</li>
139
+ <li><span class="service-icon">🎭</span> Card Toon (Toon-style Card News)</li>
140
+ <li><span class="service-icon">🎞️</span> Movie Storyboard Generation</li>
141
+ <li><span class="service-icon">πŸ“±</span> Short Toon Generation</li>
142
+ <li><span class="service-icon">πŸ“Ή</span> Short-Form Video Generation</li>
143
+ <li><span class="service-icon">πŸ“Š</span> Diagram Generation</li>
144
+ <li><span class="service-icon">πŸ“</span> Movie Scenario Generation</li>
145
+ <li><span class="service-icon">πŸŽ₯</span> Video Editing (Video + Image to Video)</li>
146
+ </ul>
147
+ </div>
148
  </div>
149
 
150
  </body>
151
+ </html>
152
+ ```
153
+
154
+ **λ ˆμ΄μ•„μ›ƒ:**
155
+ ```
156
+ β”Œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”
157
+ β”‚ GiniGen AI (제λͺ©) β”‚
158
+ β”œβ”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”¬β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€
159
+ β”‚ β”‚ 13 AI Services β”‚
160
+ β”‚ [μŠ€ν¬λ¦°μƒ· 이미지] β”‚ 🎨 Image Generation... β”‚
161
+ β”‚ β”‚ 🎬 Image to Video... β”‚
162
+ β”‚ β”‚ 🎀 Voice Clone / TTS β”‚
163
+ β”‚ [Visit λ²„νŠΌ] β”‚ 🎡 Music & Song... β”‚
164
+ β”‚ β”‚ ... (13개 μ„œλΉ„μŠ€ λͺ©λ‘) β”‚
165
+ β””β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”΄β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”€β”˜