Spaces:
Runtime error
Runtime error
icon
Browse files- components/header.tsx +1 -1
- components/input-generation.tsx +3 -2
components/header.tsx
CHANGED
|
@@ -25,7 +25,7 @@ export const Header = () => {
|
|
| 25 |
<h1 className="font-bold text-5xl lg:text-7xl text-white text-center lg:text-left">
|
| 26 |
Fast Stable Diffusion XL ⚡
|
| 27 |
</h1>
|
| 28 |
-
<p className="text-3xl lg:text-4xl text-transparent bg-gradient-to-tr from-indigo-300 via-blue-500 to-pink-400 bg-clip-text font-bold text-
|
| 29 |
on TPU v5e
|
| 30 |
</p>
|
| 31 |
|
|
|
|
| 25 |
<h1 className="font-bold text-5xl lg:text-7xl text-white text-center lg:text-left">
|
| 26 |
Fast Stable Diffusion XL ⚡
|
| 27 |
</h1>
|
| 28 |
+
<p className="text-3xl lg:text-4xl text-transparent bg-gradient-to-tr from-indigo-300 via-blue-500 to-pink-400 bg-clip-text font-bold text-left mt-2 block max-w-max mx-auto lg:ml-0">
|
| 29 |
on TPU v5e
|
| 30 |
</p>
|
| 31 |
|
components/input-generation.tsx
CHANGED
|
@@ -1,6 +1,7 @@
|
|
| 1 |
import classNames from "classnames";
|
| 2 |
import { useRef, useState } from "react";
|
| 3 |
-
import {
|
|
|
|
| 4 |
import { useUpdateEffect } from "react-use";
|
| 5 |
import { useInputGeneration } from "./main/hooks/useInputGeneration";
|
| 6 |
|
|
@@ -52,7 +53,7 @@ export const InputGeneration: React.FC = () => {
|
|
| 52 |
<span className="hidden lg:block">
|
| 53 |
{loading ? "Generating..." : "Generate"}
|
| 54 |
</span>
|
| 55 |
-
<
|
| 56 |
</button>
|
| 57 |
</div>
|
| 58 |
);
|
|
|
|
| 1 |
import classNames from "classnames";
|
| 2 |
import { useRef, useState } from "react";
|
| 3 |
+
import { FaMagic } from "react-icons/fa";
|
| 4 |
+
import { HiLightBulb } from "react-icons/hi";
|
| 5 |
import { useUpdateEffect } from "react-use";
|
| 6 |
import { useInputGeneration } from "./main/hooks/useInputGeneration";
|
| 7 |
|
|
|
|
| 53 |
<span className="hidden lg:block">
|
| 54 |
{loading ? "Generating..." : "Generate"}
|
| 55 |
</span>
|
| 56 |
+
<FaMagic className="w-5 h-5 lg:hidden" />
|
| 57 |
</button>
|
| 58 |
</div>
|
| 59 |
);
|