swore commited on
Commit
b66cb47
·
verified ·
1 Parent(s): f31bf83

Ana Özellikler:

Browse files

Görüntü düzenleme (Photoshop benzeri)
AI görüntü oluşturma
Sesli ve metin sohbeti
Website builder
Modern UI/UX tasarımı

Teknik Detaylar:

Frontend/backend teknolojileri
API entegrasyonları
Güvenlik önlemleri
Performans optimizasyonları

Kullanıcı Deneyimi:

Sezgisel navigasyon
Çok dilli destek
Mobil uyumluluk
Monetizasyon stratejileri

Files changed (5) hide show
  1. chat.html +2 -1
  2. editor.html +83 -0
  3. index.html +7 -2
  4. visual.html +2 -1
  5. voice.html +2 -1
chat.html CHANGED
@@ -16,8 +16,9 @@
16
  <a href="index.html" class="mx-2 hover:text-indigo-200">Home</a>
17
  <a href="visual.html" class="mx-2 hover:text-indigo-200">Visual</a>
18
  <a href="voice.html" class="mx-2 hover:text-indigo-200">Voice</a>
 
19
  </nav>
20
- </div>
21
  </header>
22
 
23
  <main class="flex-grow container mx-auto p-4">
 
16
  <a href="index.html" class="mx-2 hover:text-indigo-200">Home</a>
17
  <a href="visual.html" class="mx-2 hover:text-indigo-200">Visual</a>
18
  <a href="voice.html" class="mx-2 hover:text-indigo-200">Voice</a>
19
+ <a href="editor.html" class="mx-2 hover:text-indigo-200">Editor</a>
20
  </nav>
21
+ </div>
22
  </header>
23
 
24
  <main class="flex-grow container mx-auto p-4">
editor.html ADDED
@@ -0,0 +1,83 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>MindMingleAI - Image Editor</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
9
+ </head>
10
+ <body class="bg-gray-100">
11
+ <div class="min-h-screen flex flex-col">
12
+ <header class="bg-indigo-600 text-white p-4 shadow-md">
13
+ <div class="container mx-auto flex justify-between items-center">
14
+ <h1 class="text-2xl font-bold">MindMingleAI Image Editor</h1>
15
+ <nav>
16
+ <a href="index.html" class="mx-2 hover:text-indigo-200">Home</a>
17
+ <a href="chat.html" class="mx-2 hover:text-indigo-200">Chat</a>
18
+ <a href="visual.html" class="mx-2 hover:text-indigo-200">Visual</a>
19
+ <a href="voice.html" class="mx-2 hover:text-indigo-200">Voice</a>
20
+ </nav>
21
+ </div>
22
+ </header>
23
+
24
+ <main class="flex-grow container mx-auto p-4 grid grid-cols-1 lg:grid-cols-3 gap-6">
25
+ <div class="lg:col-span-2 bg-white rounded-lg shadow-md p-6">
26
+ <div class="flex justify-between items-center mb-4">
27
+ <h2 class="text-xl font-semibold">Image Editor</h2>
28
+ <div class="flex space-x-2">
29
+ <button class="px-4 py-2 bg-indigo-100 text-indigo-600 rounded-md hover:bg-indigo-200">
30
+ <i class="fas fa-magic mr-2"></i>AI Enhance
31
+ </button>
32
+ <button class="px-4 py-2 bg-indigo-600 text-white rounded-md hover:bg-indigo-700">
33
+ <i class="fas fa-save mr-2"></i>Save
34
+ </button>
35
+ </div>
36
+ </div>
37
+ <div class="border-2 border-dashed border-gray-300 rounded-lg h-96 flex items-center justify-center">
38
+ <div class="text-center">
39
+ <i class="fas fa-image text-4xl text-gray-400 mb-2"></i>
40
+ <p class="text-gray-500">Upload or drag & drop an image</p>
41
+ <input type="file" class="hidden" id="image-upload">
42
+ </div>
43
+ </div>
44
+ </div>
45
+
46
+ <div class="bg-white rounded-lg shadow-md p-6">
47
+ <h2 class="text-xl font-semibold mb-4">Tools & Options</h2>
48
+ <div class="space-y-4">
49
+ <div>
50
+ <h3 class="font-medium mb-2">AI Generation</h3>
51
+ <input type="text" class="w-full border border-gray-300 rounded-md p-2 mb-2" placeholder="Describe what you want to generate...">
52
+ <button class="w-full bg-indigo-600 text-white py-2 rounded-md hover:bg-indigo-700">
53
+ Generate Image
54
+ </button>
55
+ </div>
56
+ <div>
57
+ <h3 class="font-medium mb-2">Filters & Adjustments</h3>
58
+ <div class="grid grid-cols-2 gap-2">
59
+ <button class="p-2 border border-gray-200 rounded-md hover:bg-gray-50">Brightness</button>
60
+ <button class="p-2 border border-gray-200 rounded-md hover:bg-gray-50">Contrast</button>
61
+ <button class="p-2 border border-gray-200 rounded-md hover:bg-gray-50">Saturation</button>
62
+ <button class="p-2 border border-gray-200 rounded-md hover:bg-gray-50">Blur</button>
63
+ </div>
64
+ </div>
65
+ <div>
66
+ <h3 class="font-medium mb-2">AI Tools</h3>
67
+ <div class="grid grid-cols-2 gap-2">
68
+ <button class="p-2 border border-gray-200 rounded-md hover:bg-gray-50">Object Remove</button>
69
+ <button class="p-2 border border-gray-200 rounded-md hover:bg-gray-50">Background Remove</button>
70
+ <button class="p-2 border border-gray-200 rounded-md hover:bg-gray-50">Colorize</button>
71
+ <button class="p-2 border border-gray-200 rounded-md hover:bg-gray-50">Upscale</button>
72
+ </div>
73
+ </div>
74
+ </div>
75
+ </div>
76
+ </main>
77
+
78
+ <footer class="bg-gray-800 text-white p-4 text-center">
79
+ <p>© 2023 MindMingleAI - Advanced Image Editing Platform</p>
80
+ </footer>
81
+ </div>
82
+ </body>
83
+ </html>
index.html CHANGED
@@ -14,7 +14,7 @@
14
  <span class="text-2xl lg:text-4xl text-gray-400 block font-medium">Yapay Zeka Sohbet Platformu</span>
15
  MindMingleAI
16
  </h1>
17
- <div class="grid grid-cols-1 md:grid-cols-3 gap-4 mt-12">
18
  <a href="chat.html" class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition-all text-center">
19
  <div class="text-indigo-600 text-3xl mb-3"><i class="fas fa-comments"></i></div>
20
  <h3 class="font-semibold text-lg">Metin Sohbet</h3>
@@ -30,8 +30,13 @@
30
  <h3 class="font-semibold text-lg">Sesli Sohbet</h3>
31
  <p class="text-gray-500 mt-2 text-sm">Sesinizle konuşun</p>
32
  </a>
 
 
 
 
 
33
  </div>
34
- </div>
35
  <img src="https://enzostvs-deepsite.hf.space/arrow.svg" class="absolute bottom-8 left-0 w-[100px] transform rotate-[30deg]" />
36
  <script></script>
37
  </body>
 
14
  <span class="text-2xl lg:text-4xl text-gray-400 block font-medium">Yapay Zeka Sohbet Platformu</span>
15
  MindMingleAI
16
  </h1>
17
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-4 mt-12">
18
  <a href="chat.html" class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition-all text-center">
19
  <div class="text-indigo-600 text-3xl mb-3"><i class="fas fa-comments"></i></div>
20
  <h3 class="font-semibold text-lg">Metin Sohbet</h3>
 
30
  <h3 class="font-semibold text-lg">Sesli Sohbet</h3>
31
  <p class="text-gray-500 mt-2 text-sm">Sesinizle konuşun</p>
32
  </a>
33
+ <a href="editor.html" class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition-all text-center">
34
+ <div class="text-indigo-600 text-3xl mb-3"><i class="fas fa-paint-brush"></i></div>
35
+ <h3 class="font-semibold text-lg">AI Görüntü Editörü</h3>
36
+ <p class="text-gray-500 mt-2 text-sm">Fotoğrafları düzenleyin ve oluşturun</p>
37
+ </a>
38
  </div>
39
+ </div>
40
  <img src="https://enzostvs-deepsite.hf.space/arrow.svg" class="absolute bottom-8 left-0 w-[100px] transform rotate-[30deg]" />
41
  <script></script>
42
  </body>
visual.html CHANGED
@@ -15,8 +15,9 @@
15
  <a href="index.html" class="mx-2 hover:text-indigo-200">Home</a>
16
  <a href="chat.html" class="mx-2 hover:text-indigo-200">Chat</a>
17
  <a href="voice.html" class="mx-2 hover:text-indigo-200">Voice</a>
 
18
  </nav>
19
- </div>
20
  </header>
21
 
22
  <main class="flex-grow container mx-auto p-4 grid grid-cols-1 md:grid-cols-2 gap-6">
 
15
  <a href="index.html" class="mx-2 hover:text-indigo-200">Home</a>
16
  <a href="chat.html" class="mx-2 hover:text-indigo-200">Chat</a>
17
  <a href="voice.html" class="mx-2 hover:text-indigo-200">Voice</a>
18
+ <a href="editor.html" class="mx-2 hover:text-indigo-200">Editor</a>
19
  </nav>
20
+ </div>
21
  </header>
22
 
23
  <main class="flex-grow container mx-auto p-4 grid grid-cols-1 md:grid-cols-2 gap-6">
voice.html CHANGED
@@ -15,8 +15,9 @@
15
  <a href="index.html" class="mx-2 hover:text-indigo-200">Home</a>
16
  <a href="chat.html" class="mx-2 hover:text-indigo-200">Chat</a>
17
  <a href="visual.html" class="mx-2 hover:text-indigo-200">Visual</a>
 
18
  </nav>
19
- </div>
20
  </header>
21
 
22
  <main class="flex-grow container mx-auto p-4 flex items-center justify-center">
 
15
  <a href="index.html" class="mx-2 hover:text-indigo-200">Home</a>
16
  <a href="chat.html" class="mx-2 hover:text-indigo-200">Chat</a>
17
  <a href="visual.html" class="mx-2 hover:text-indigo-200">Visual</a>
18
+ <a href="editor.html" class="mx-2 hover:text-indigo-200">Editor</a>
19
  </nav>
20
+ </div>
21
  </header>
22
 
23
  <main class="flex-grow container mx-auto p-4 flex items-center justify-center">