Update src/components/preview/preview.tsx
Browse files
src/components/preview/preview.tsx
CHANGED
@@ -61,6 +61,13 @@ function Preview({
|
|
61 |
Back to Editor
|
62 |
</button>
|
63 |
{html === defaultHTML && (
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
)}
|
65 |
<button
|
66 |
className="bg-white lg:bg-gray-950 shadow-md text-gray-950 lg:text-white text-xs lg:text-sm font-medium py-2 px-3 lg:px-4 rounded-lg flex items-center gap-2 border border-gray-100 lg:border-gray-900 hover:brightness-150 transition-all duration-100 cursor-pointer"
|
|
|
61 |
Back to Editor
|
62 |
</button>
|
63 |
{html === defaultHTML && (
|
64 |
+
<a
|
65 |
+
href="https://huggingface.co/spaces/victor/deepsite-gallery"
|
66 |
+
target="_blank"
|
67 |
+
className="bg-gray-200 text-gray-950 text-xs lg:text-sm font-medium py-2 px-3 lg:px-4 rounded-lg flex items-center gap-2 border border-gray-200 hover:bg-gray-300 transition-all duration-100 cursor-pointer"
|
68 |
+
>
|
69 |
+
🖼️ <span>Галерея готовых проектов</span>
|
70 |
+
</a>
|
71 |
)}
|
72 |
<button
|
73 |
className="bg-white lg:bg-gray-950 shadow-md text-gray-950 lg:text-white text-xs lg:text-sm font-medium py-2 px-3 lg:px-4 rounded-lg flex items-center gap-2 border border-gray-100 lg:border-gray-900 hover:brightness-150 transition-all duration-100 cursor-pointer"
|