Update index.html
Browse files- index.html +150 -20
index.html
CHANGED
|
@@ -18,17 +18,82 @@
|
|
| 18 |
}
|
| 19 |
.header {
|
| 20 |
text-align: center;
|
| 21 |
-
margin-bottom:
|
| 22 |
}
|
| 23 |
.header h1 {
|
| 24 |
color: #6b5b7a;
|
| 25 |
-
font-size: 2.
|
| 26 |
margin-bottom: 10px;
|
|
|
|
| 27 |
}
|
| 28 |
.header p {
|
| 29 |
color: #8b7b9b;
|
| 30 |
-
font-size: 1.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
}
|
|
|
|
| 32 |
.container {
|
| 33 |
display: flex;
|
| 34 |
gap: 40px;
|
|
@@ -40,37 +105,56 @@
|
|
| 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.
|
| 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:
|
| 57 |
-
padding:
|
| 58 |
-
background: linear-gradient(90deg, #
|
| 59 |
color: white;
|
| 60 |
text-decoration: none;
|
| 61 |
-
border-radius:
|
| 62 |
-
font-weight:
|
| 63 |
-
font-size: 1.
|
| 64 |
-
box-shadow: 0
|
| 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:
|
| 74 |
padding: 30px;
|
| 75 |
box-shadow: 0 8px 30px rgba(0,0,0,0.1);
|
| 76 |
}
|
|
@@ -79,33 +163,46 @@
|
|
| 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:
|
| 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:
|
| 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.
|
|
|
|
|
|
|
| 104 |
}
|
|
|
|
|
|
|
| 105 |
@media (max-width: 900px) {
|
| 106 |
.container {
|
| 107 |
flex-direction: column;
|
| 108 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 109 |
}
|
| 110 |
</style>
|
| 111 |
</head>
|
|
@@ -116,11 +213,44 @@
|
|
| 116 |
<p>All-in-One AI Creative Platform</p>
|
| 117 |
</div>
|
| 118 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 119 |
<div class="container">
|
| 120 |
<div class="left-section">
|
| 121 |
-
<
|
| 122 |
-
<
|
| 123 |
-
|
|
|
|
|
|
|
| 124 |
<br>
|
| 125 |
<a href="https://ginigen.ai/en" target="_blank" class="visit-btn">
|
| 126 |
Visit GiniGen AI
|
|
@@ -142,7 +272,7 @@
|
|
| 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
|
| 146 |
</ul>
|
| 147 |
</div>
|
| 148 |
</div>
|
|
|
|
| 18 |
}
|
| 19 |
.header {
|
| 20 |
text-align: center;
|
| 21 |
+
margin-bottom: 20px;
|
| 22 |
}
|
| 23 |
.header h1 {
|
| 24 |
color: #6b5b7a;
|
| 25 |
+
font-size: 2.8rem;
|
| 26 |
margin-bottom: 10px;
|
| 27 |
+
text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
|
| 28 |
}
|
| 29 |
.header p {
|
| 30 |
color: #8b7b9b;
|
| 31 |
+
font-size: 1.2rem;
|
| 32 |
+
}
|
| 33 |
+
|
| 34 |
+
/* SOTA λͺ¨λΈ μ€λͺ
μΉμ
*/
|
| 35 |
+
.sota-section {
|
| 36 |
+
max-width: 1400px;
|
| 37 |
+
margin: 0 auto 30px auto;
|
| 38 |
+
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
| 39 |
+
border-radius: 20px;
|
| 40 |
+
padding: 30px 40px;
|
| 41 |
+
color: white;
|
| 42 |
+
box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
|
| 43 |
+
}
|
| 44 |
+
.sota-section h2 {
|
| 45 |
+
font-size: 1.6rem;
|
| 46 |
+
margin-bottom: 15px;
|
| 47 |
+
display: flex;
|
| 48 |
+
align-items: center;
|
| 49 |
+
gap: 10px;
|
| 50 |
+
}
|
| 51 |
+
.sota-section p {
|
| 52 |
+
font-size: 1.05rem;
|
| 53 |
+
line-height: 1.7;
|
| 54 |
+
opacity: 0.95;
|
| 55 |
+
}
|
| 56 |
+
.model-tags {
|
| 57 |
+
display: flex;
|
| 58 |
+
flex-wrap: wrap;
|
| 59 |
+
gap: 10px;
|
| 60 |
+
margin-top: 15px;
|
| 61 |
+
}
|
| 62 |
+
.model-tag {
|
| 63 |
+
background: rgba(255,255,255,0.2);
|
| 64 |
+
padding: 8px 16px;
|
| 65 |
+
border-radius: 20px;
|
| 66 |
+
font-size: 0.9rem;
|
| 67 |
+
font-weight: 600;
|
| 68 |
+
backdrop-filter: blur(10px);
|
| 69 |
+
}
|
| 70 |
+
|
| 71 |
+
/* Hogwarts Banana μΉμ
*/
|
| 72 |
+
.hogwarts-section {
|
| 73 |
+
max-width: 1400px;
|
| 74 |
+
margin: 0 auto 30px auto;
|
| 75 |
+
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
|
| 76 |
+
border-radius: 20px;
|
| 77 |
+
padding: 25px 40px;
|
| 78 |
+
color: white;
|
| 79 |
+
box-shadow: 0 10px 40px rgba(240, 147, 251, 0.3);
|
| 80 |
+
display: flex;
|
| 81 |
+
align-items: center;
|
| 82 |
+
gap: 20px;
|
| 83 |
+
}
|
| 84 |
+
.hogwarts-icon {
|
| 85 |
+
font-size: 3rem;
|
| 86 |
+
}
|
| 87 |
+
.hogwarts-content h3 {
|
| 88 |
+
font-size: 1.4rem;
|
| 89 |
+
margin-bottom: 8px;
|
| 90 |
+
}
|
| 91 |
+
.hogwarts-content p {
|
| 92 |
+
font-size: 1rem;
|
| 93 |
+
opacity: 0.95;
|
| 94 |
+
line-height: 1.6;
|
| 95 |
}
|
| 96 |
+
|
| 97 |
.container {
|
| 98 |
display: flex;
|
| 99 |
gap: 40px;
|
|
|
|
| 105 |
flex: 1;
|
| 106 |
text-align: center;
|
| 107 |
}
|
| 108 |
+
.image-wrapper {
|
| 109 |
+
position: relative;
|
| 110 |
+
display: inline-block;
|
| 111 |
+
}
|
| 112 |
+
.image-wrapper::before {
|
| 113 |
+
content: '';
|
| 114 |
+
position: absolute;
|
| 115 |
+
top: -10px;
|
| 116 |
+
left: -10px;
|
| 117 |
+
right: -10px;
|
| 118 |
+
bottom: -10px;
|
| 119 |
+
background: linear-gradient(135deg, #667eea, #764ba2, #f093fb, #f5576c);
|
| 120 |
+
border-radius: 20px;
|
| 121 |
+
z-index: -1;
|
| 122 |
+
opacity: 0.7;
|
| 123 |
+
filter: blur(15px);
|
| 124 |
+
}
|
| 125 |
.left-section img {
|
| 126 |
width: 100%;
|
| 127 |
max-width: 600px;
|
| 128 |
border-radius: 16px;
|
| 129 |
+
box-shadow: 0 8px 30px rgba(0,0,0,0.2);
|
| 130 |
cursor: pointer;
|
| 131 |
transition: transform 0.3s ease;
|
| 132 |
+
border: 3px solid white;
|
| 133 |
}
|
| 134 |
.left-section img:hover {
|
| 135 |
transform: scale(1.02);
|
| 136 |
}
|
| 137 |
.visit-btn {
|
| 138 |
display: inline-block;
|
| 139 |
+
margin-top: 25px;
|
| 140 |
+
padding: 18px 50px;
|
| 141 |
+
background: linear-gradient(90deg, #667eea, #764ba2);
|
| 142 |
color: white;
|
| 143 |
text-decoration: none;
|
| 144 |
+
border-radius: 30px;
|
| 145 |
+
font-weight: 700;
|
| 146 |
+
font-size: 1.2rem;
|
| 147 |
+
box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
|
| 148 |
+
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
| 149 |
}
|
| 150 |
.visit-btn:hover {
|
| 151 |
transform: translateY(-3px);
|
| 152 |
+
box-shadow: 0 10px 30px rgba(102, 126, 234, 0.5);
|
| 153 |
}
|
| 154 |
.right-section {
|
| 155 |
flex: 1;
|
| 156 |
background: white;
|
| 157 |
+
border-radius: 20px;
|
| 158 |
padding: 30px;
|
| 159 |
box-shadow: 0 8px 30px rgba(0,0,0,0.1);
|
| 160 |
}
|
|
|
|
| 163 |
font-size: 1.5rem;
|
| 164 |
margin-bottom: 20px;
|
| 165 |
text-align: center;
|
| 166 |
+
display: flex;
|
| 167 |
+
align-items: center;
|
| 168 |
+
justify-content: center;
|
| 169 |
+
gap: 10px;
|
| 170 |
}
|
| 171 |
.service-list {
|
| 172 |
list-style: none;
|
| 173 |
}
|
| 174 |
.service-list li {
|
| 175 |
padding: 12px 15px;
|
| 176 |
+
margin-bottom: 8px;
|
| 177 |
background: linear-gradient(135deg, #f8f4ff 0%, #f0f4ff 100%);
|
| 178 |
border-radius: 10px;
|
| 179 |
color: #5a4a6a;
|
| 180 |
font-size: 0.95rem;
|
| 181 |
display: flex;
|
| 182 |
align-items: center;
|
| 183 |
+
gap: 12px;
|
| 184 |
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
| 185 |
+
border-left: 3px solid #667eea;
|
| 186 |
}
|
| 187 |
.service-list li:hover {
|
| 188 |
transform: translateX(5px);
|
| 189 |
box-shadow: 0 4px 15px rgba(107, 91, 122, 0.15);
|
| 190 |
}
|
| 191 |
.service-icon {
|
| 192 |
+
font-size: 1.2rem;
|
| 193 |
+
width: 30px;
|
| 194 |
+
text-align: center;
|
| 195 |
}
|
| 196 |
+
|
| 197 |
+
/* λ°μν */
|
| 198 |
@media (max-width: 900px) {
|
| 199 |
.container {
|
| 200 |
flex-direction: column;
|
| 201 |
}
|
| 202 |
+
.hogwarts-section {
|
| 203 |
+
flex-direction: column;
|
| 204 |
+
text-align: center;
|
| 205 |
+
}
|
| 206 |
}
|
| 207 |
</style>
|
| 208 |
</head>
|
|
|
|
| 213 |
<p>All-in-One AI Creative Platform</p>
|
| 214 |
</div>
|
| 215 |
|
| 216 |
+
<!-- SOTA λͺ¨λΈ μ€λͺ
-->
|
| 217 |
+
<div class="sota-section">
|
| 218 |
+
<h2>Powered by State-of-the-Art AI Models</h2>
|
| 219 |
+
<p>
|
| 220 |
+
GiniGen AI integrates the latest and highest-performing SOTA models with powerful Custom Add-ons,
|
| 221 |
+
delivering an unparalleled creative experience. Experience next-generation AI capabilities
|
| 222 |
+
that push the boundaries of what's possible.
|
| 223 |
+
</p>
|
| 224 |
+
<div class="model-tags">
|
| 225 |
+
<span class="model-tag">Nano Banana Pro</span>
|
| 226 |
+
<span class="model-tag">Kling 2.6</span>
|
| 227 |
+
<span class="model-tag">Kling o1</span>
|
| 228 |
+
<span class="model-tag">Seedream 4.5</span>
|
| 229 |
+
<span class="model-tag">Seedance-1-Pro</span>
|
| 230 |
+
<span class="model-tag">Custom Add-ons</span>
|
| 231 |
+
</div>
|
| 232 |
+
</div>
|
| 233 |
+
|
| 234 |
+
<!-- Hogwarts Banana μΉμ
-->
|
| 235 |
+
<div class="hogwarts-section">
|
| 236 |
+
<div class="hogwarts-icon">πͺ</div>
|
| 237 |
+
<div class="hogwarts-content">
|
| 238 |
+
<h3>Hogwarts Banana - Magical Custom Add-on</h3>
|
| 239 |
+
<p>
|
| 240 |
+
Hogwarts Banana pushes AI technology to its absolute limits, implementing magical custom add-on
|
| 241 |
+
features that transform the impossible into reality. Unlock extraordinary creative powers
|
| 242 |
+
that feel like pure wizardry.
|
| 243 |
+
</p>
|
| 244 |
+
</div>
|
| 245 |
+
</div>
|
| 246 |
+
|
| 247 |
<div class="container">
|
| 248 |
<div class="left-section">
|
| 249 |
+
<div class="image-wrapper">
|
| 250 |
+
<a href="https://ginigen.ai/en" target="_blank">
|
| 251 |
+
<img src="screenshot.png" alt="GiniGen AI Preview">
|
| 252 |
+
</a>
|
| 253 |
+
</div>
|
| 254 |
<br>
|
| 255 |
<a href="https://ginigen.ai/en" target="_blank" class="visit-btn">
|
| 256 |
Visit GiniGen AI
|
|
|
|
| 272 |
<li><span class="service-icon">πΉ</span> Short-Form Video Generation</li>
|
| 273 |
<li><span class="service-icon">π</span> Diagram Generation</li>
|
| 274 |
<li><span class="service-icon">π</span> Movie Scenario Generation</li>
|
| 275 |
+
<li><span class="service-icon">π₯</span> Video Editing & Generation</li>
|
| 276 |
</ul>
|
| 277 |
</div>
|
| 278 |
</div>
|