File size: 4,661 Bytes
b66cb47
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>MindMingleAI - Image Editor</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
</head>
<body class="bg-gray-100">
    <div class="min-h-screen flex flex-col">
        <header class="bg-indigo-600 text-white p-4 shadow-md">
            <div class="container mx-auto flex justify-between items-center">
                <h1 class="text-2xl font-bold">MindMingleAI Image Editor</h1>
                <nav>
                    <a href="index.html" class="mx-2 hover:text-indigo-200">Home</a>
                    <a href="chat.html" class="mx-2 hover:text-indigo-200">Chat</a>
                    <a href="visual.html" class="mx-2 hover:text-indigo-200">Visual</a>
                    <a href="voice.html" class="mx-2 hover:text-indigo-200">Voice</a>
                </nav>
            </div>
        </header>

        <main class="flex-grow container mx-auto p-4 grid grid-cols-1 lg:grid-cols-3 gap-6">
            <div class="lg:col-span-2 bg-white rounded-lg shadow-md p-6">
                <div class="flex justify-between items-center mb-4">
                    <h2 class="text-xl font-semibold">Image Editor</h2>
                    <div class="flex space-x-2">
                        <button class="px-4 py-2 bg-indigo-100 text-indigo-600 rounded-md hover:bg-indigo-200">
                            <i class="fas fa-magic mr-2"></i>AI Enhance
                        </button>
                        <button class="px-4 py-2 bg-indigo-600 text-white rounded-md hover:bg-indigo-700">
                            <i class="fas fa-save mr-2"></i>Save
                        </button>
                    </div>
                </div>
                <div class="border-2 border-dashed border-gray-300 rounded-lg h-96 flex items-center justify-center">
                    <div class="text-center">
                        <i class="fas fa-image text-4xl text-gray-400 mb-2"></i>
                        <p class="text-gray-500">Upload or drag & drop an image</p>
                        <input type="file" class="hidden" id="image-upload">
                    </div>
                </div>
            </div>

            <div class="bg-white rounded-lg shadow-md p-6">
                <h2 class="text-xl font-semibold mb-4">Tools & Options</h2>
                <div class="space-y-4">
                    <div>
                        <h3 class="font-medium mb-2">AI Generation</h3>
                        <input type="text" class="w-full border border-gray-300 rounded-md p-2 mb-2" placeholder="Describe what you want to generate...">
                        <button class="w-full bg-indigo-600 text-white py-2 rounded-md hover:bg-indigo-700">
                            Generate Image
                        </button>
                    </div>
                    <div>
                        <h3 class="font-medium mb-2">Filters & Adjustments</h3>
                        <div class="grid grid-cols-2 gap-2">
                            <button class="p-2 border border-gray-200 rounded-md hover:bg-gray-50">Brightness</button>
                            <button class="p-2 border border-gray-200 rounded-md hover:bg-gray-50">Contrast</button>
                            <button class="p-2 border border-gray-200 rounded-md hover:bg-gray-50">Saturation</button>
                            <button class="p-2 border border-gray-200 rounded-md hover:bg-gray-50">Blur</button>
                        </div>
                    </div>
                    <div>
                        <h3 class="font-medium mb-2">AI Tools</h3>
                        <div class="grid grid-cols-2 gap-2">
                            <button class="p-2 border border-gray-200 rounded-md hover:bg-gray-50">Object Remove</button>
                            <button class="p-2 border border-gray-200 rounded-md hover:bg-gray-50">Background Remove</button>
                            <button class="p-2 border border-gray-200 rounded-md hover:bg-gray-50">Colorize</button>
                            <button class="p-2 border border-gray-200 rounded-md hover:bg-gray-50">Upscale</button>
                        </div>
                    </div>
                </div>
            </div>
        </main>

        <footer class="bg-gray-800 text-white p-4 text-center">
            <p>© 2023 MindMingleAI - Advanced Image Editing Platform</p>
        </footer>
    </div>
</body>
</html>