i6od commited on
Commit
fe742db
·
verified ·
1 Parent(s): 65fb80c

I just wanna see it first then ill tell u what to redesign

Browse files
Files changed (4) hide show
  1. README.md +8 -5
  2. index.html +164 -19
  3. script.js +8 -0
  4. style.css +21 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Pixelperfect Ai Toolkit
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: PixelPerfect AI Toolkit
3
+ colorFrom: blue
4
+ colorTo: green
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,164 @@
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="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Quick-Img Free AI Background Remover, Object Eraser & Image Upscaler</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <script src="https://unpkg.com/feather-icons"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <link rel="stylesheet" href="style.css">
11
+ </head>
12
+ <body class="bg-gray-50 min-h-screen">
13
+ <header class="bg-white shadow-sm">
14
+ <div class="container mx-auto px-4 py-6 flex justify-between items-center">
15
+ <h1 class="text-2xl font-bold text-indigo-600">Quick-Img</h1>
16
+ <nav>
17
+ <ul class="flex space-x-6">
18
+ <li><a href="#" class="text-gray-600 hover:text-indigo-600">Home</a></li>
19
+ <li><a href="#" class="text-gray-600 hover:text-indigo-600">Tools</a></li>
20
+ <li><a href="#" class="text-gray-600 hover:text-indigo-600">About</a></li>
21
+ </ul>
22
+ </nav>
23
+ </div>
24
+ </header>
25
+
26
+ <main class="container mx-auto px-4 py-12">
27
+ <section class="mb-16">
28
+ <h2 class="text-3xl font-bold text-center mb-12">AI-Powered Image Editing Tools</h2>
29
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
30
+ <!-- Background Remover -->
31
+ <div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-lg transition-shadow">
32
+ <img src="https://quick-img.com/_next/image?url=%2Fanimations%2Fbg-remover-card.webp&w=3840&q=75" alt="Background remover" class="w-full h-48 object-cover">
33
+ <div class="p-6">
34
+ <h3 class="text-xl font-semibold mb-2">Background Remover</h3>
35
+ <p class="text-gray-600 mb-4">Remove backgrounds from images instantly with AI</p>
36
+ <a href="https://quick-img.com/bg-remove" class="inline-flex items-center text-indigo-600 font-medium">
37
+ Try now <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
38
+ </a>
39
+ </div>
40
+ </div>
41
+
42
+ <!-- Object Remover -->
43
+ <div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-lg transition-shadow">
44
+ <img src="https://quick-img.com/_next/image?url=%2Fanimations%2Fobject-remover-card.webp&w=3840&q=75" alt="Object remover" class="w-full h-48 object-cover">
45
+ <div class="p-6">
46
+ <h3 class="text-xl font-semibold mb-2">Object Remover</h3>
47
+ <p class="text-gray-600 mb-4">Erase unwanted objects from your photos seamlessly</p>
48
+ <a href="https://quick-img.com/object-remover" class="inline-flex items-center text-indigo-600 font-medium">
49
+ Try now <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
50
+ </a>
51
+ </div>
52
+ </div>
53
+
54
+ <!-- Image Upscaler -->
55
+ <div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-lg transition-shadow">
56
+ <img src="https://quick-img.com/_next/image?url=%2Fanimations%2Fupscale-card.webp&w=3840&q=75" alt="Image upscaler" class="w-full h-48 object-cover">
57
+ <div class="p-6">
58
+ <h3 class="text-xl font-semibold mb-2">Image Upscaler</h3>
59
+ <p class="text-gray-600 mb-4">Enhance image resolution without losing quality</p>
60
+ <a href="https://quick-img.com/upscale" class="inline-flex items-center text-indigo-600 font-medium">
61
+ Try now <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
62
+ </a>
63
+ </div>
64
+ </div>
65
+
66
+ <!-- Image Converter -->
67
+ <div class="bg-white rounded-xl shadow-md overflow-hidden hover:shadow-lg transition-shadow">
68
+ <img src="https://quick-img.com/_next/image?url=%2Fanimations%2Fconvert-card.jpg&w=3840&q=75" alt="Image converter" class="w-full h-48 object-cover">
69
+ <div class="p-6">
70
+ <h3 class="text-xl font-semibold mb-2">Image Converter</h3>
71
+ <p class="text-gray-600 mb-4">Convert images between different formats easily</p>
72
+ <a href="https://quick-img.com/convert" class="inline-flex items-center text-indigo-600 font-medium">
73
+ Try now <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
74
+ </a>
75
+ </div>
76
+ </div>
77
+ </div>
78
+ </section>
79
+
80
+ <section class="mb-16 max-w-3xl mx-auto">
81
+ <h2 class="text-2xl font-bold mb-6">Service News</h2>
82
+ <div class="bg-white rounded-xl shadow-md p-6">
83
+ <h3 class="text-xl font-semibold mb-2">Quick-Img Nears Official Launch After Successful Beta</h3>
84
+ <p class="text-gray-500 mb-4">11/27/2025</p>
85
+ <p class="text-gray-700 mb-4">
86
+ Quick-Img, a free browser-based image toolkit, is wrapping up its testing phase and preparing for public release.
87
+ The platform offers background removal, object erasing (inpaint), image upscaling, and format conversion — all without any software installation.
88
+ </p>
89
+ <a href="https://quick-img.com/" class="text-indigo-600 hover:underline">Visit Quick-Img</a>
90
+ </div>
91
+ </section>
92
+
93
+ <section class="max-w-3xl mx-auto">
94
+ <div class="bg-white rounded-xl shadow-md p-6 flex flex-col md:flex-row items-start">
95
+ <img src="https://quick-img.com/_next/image?url=%2Fnicktanium-avatar.jpg&w=256&q=75" alt="Nikita" class="w-24 h-24 rounded-full mb-4 md:mb-0 md:mr-6">
96
+ <div>
97
+ <h3 class="text-xl font-semibold mb-2">NICKTANIUM</h3>
98
+ <p class="text-gray-700 mb-4">
99
+ Hey! I'm Nikita from the YouTube channel <a href="https://www.youtube.com/@NICK-TANIUM" class="text-indigo-600 hover:underline">NICKTANIUM</a>.
100
+ This site is my personal project. If you want to support me - you can just send the link to my YouTube videos to your friends or share them on social media.
101
+ </p>
102
+ <p class="text-gray-700 mb-4">Thanks for using my web app!</p>
103
+ <div class="mb-4">
104
+ <p class="font-medium text-gray-700 mb-1">Technical support & business inquiries:</p>
105
+ <div class="flex items-center">
106
+ <span class="bg-gray-100 px-3 py-2 rounded-md text-gray-800">support@quick-img.com</span>
107
+ <button class="ml-2 p-2 rounded-full hover:bg-gray-100" title="Copy to clipboard">
108
+ <i data-feather="copy" class="w-4 h-4 text-gray-500"></i>
109
+ </button>
110
+ </div>
111
+ </div>
112
+ <div>
113
+ <p class="font-medium text-gray-700 mb-2">My socials:</p>
114
+ <div class="flex space-x-4">
115
+ <a href="#" class="text-gray-500 hover:text-indigo-600"><i data-feather="youtube" class="w-5 h-5"></i></a>
116
+ <a href="#" class="text-gray-500 hover:text-indigo-600"><i data-feather="twitter" class="w-5 h-5"></i></a>
117
+ <a href="#" class="text-gray-500 hover:text-indigo-600"><i data-feather="instagram" class="w-5 h-5"></i></a>
118
+ <a href="#" class="text-gray-500 hover:text-indigo-600"><i data-feather="github" class="w-5 h-5"></i></a>
119
+ </div>
120
+ </div>
121
+ </div>
122
+ </div>
123
+ </section>
124
+ </main>
125
+
126
+ <footer class="bg-gray-800 text-white py-8">
127
+ <div class="container mx-auto px-4">
128
+ <div class="flex flex-col md:flex-row justify-between items-center">
129
+ <div class="mb-4 md:mb-0">
130
+ <h2 class="text-xl font-bold">Quick-Img</h2>
131
+ <p class="text-gray-400">Free AI-powered image editing tools</p>
132
+ </div>
133
+ <div class="flex space-x-6">
134
+ <a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a>
135
+ <a href="#" class="text-gray-400 hover:text-white">Terms of Service</a>
136
+ <a href="#" class="text-gray-400 hover:text-white">Contact</a>
137
+ </div>
138
+ </div>
139
+ <div class="mt-6 pt-6 border-t border-gray-700 text-center text-gray-400">
140
+ <p>© 2025 Quick-Img. All rights reserved.</p>
141
+ </div>
142
+ </div>
143
+ </footer>
144
+
145
+ <script>
146
+ feather.replace();
147
+ // Simple copy to clipboard functionality
148
+ document.querySelectorAll('[data-feather="copy"]').forEach(button => {
149
+ button.addEventListener('click', function() {
150
+ const text = this.parentElement.previousElementSibling.textContent;
151
+ navigator.clipboard.writeText(text);
152
+ const originalIcon = this.getAttribute('data-feather');
153
+ this.setAttribute('data-feather', 'check');
154
+ feather.replace();
155
+ setTimeout(() => {
156
+ this.setAttribute('data-feather', originalIcon);
157
+ feather.replace();
158
+ }, 2000);
159
+ });
160
+ });
161
+ </script>
162
+ <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
163
+ </body>
164
+ </html>
script.js ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ // Main JavaScript file for shared functionality
2
+ document.addEventListener('DOMContentLoaded', function() {
3
+ // Any shared JavaScript functionality can go here
4
+ console.log('Quick-Img loaded successfully!');
5
+
6
+ // You could add more interactive elements here
7
+ // For example, tooltips, animations, etc.
8
+ });
style.css CHANGED
@@ -1,28 +1,31 @@
 
1
  body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
4
  }
5
 
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
9
  }
10
 
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
  }
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
24
  }
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
28
  }
 
 
 
 
 
 
 
 
 
 
1
+ /* Custom styles that can't be achieved with Tailwind */
2
  body {
3
+ font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
 
4
  }
5
 
6
+ /* Smooth hover transitions */
7
+ .card-hover {
8
+ transition: all 0.3s ease;
9
  }
10
 
11
+ .card-hover:hover {
12
+ transform: translateY(-5px);
 
 
 
13
  }
14
 
15
+ /* Custom scrollbar */
16
+ ::-webkit-scrollbar {
17
+ width: 8px;
 
 
 
18
  }
19
 
20
+ ::-webkit-scrollbar-track {
21
+ background: #f1f1f1;
22
  }
23
+
24
+ ::-webkit-scrollbar-thumb {
25
+ background: #888;
26
+ border-radius: 4px;
27
+ }
28
+
29
+ ::-webkit-scrollbar-thumb:hover {
30
+ background: #555;
31
+ }