jbilcke-hf HF staff commited on
Commit
63561e1
β€’
1 Parent(s): 415446d
src/app/interface/about/index.tsx CHANGED
@@ -25,7 +25,7 @@ export function About() {
25
  This app is currently in development, and allows you to generate a GIF using text (and soon a LoRA)
26
  </p>
27
  <p>
28
- πŸ‘‰ It uses an API that you can <a className="text-stone-600 underline" href="https://huggingface.co/spaces/jbilcke-hf/ai-comic-factory/blob/main/README.md" target="_blank">fork from here</a>. This API is based on the amazing work made by <a className="text-stone-600 underline" href="https://huggingface.co/fffiloni" target="_blank">@fffiloni</a> for his super cool <a className="text-stone-600 underline" href="https://huggingface.co/spaces/fffiloni/text-to-gif" target="_blank">Hotshot-XL Space</a>.
29
  </p>
30
  <p>
31
  πŸ‘‰ The model is <a className="text-stone-600 underline" href="https://huggingface.co/hotshotco/Hotshot-XL" target="_blank">Hotshot-XL</a> made by the awesome <a className="text-stone-600 underline" href="https://hotshot.co" target="_blank">hotshot.co team</a>.
 
25
  This app is currently in development, and allows you to generate a GIF using text (and soon a LoRA)
26
  </p>
27
  <p>
28
+ πŸ‘‰ It uses an API that you can <a className="text-stone-600 underline" href="https://github.com/jbilcke-hf/Hotshot-XL-Gradio-API" target="_blank">fork from here</a>. This API is based on the amazing work made by <a className="text-stone-600 underline" href="https://huggingface.co/fffiloni" target="_blank">@fffiloni</a> for his super cool <a className="text-stone-600 underline" href="https://huggingface.co/spaces/fffiloni/text-to-gif" target="_blank">Hotshot-XL Space</a>.
29
  </p>
30
  <p>
31
  πŸ‘‰ The model is <a className="text-stone-600 underline" href="https://huggingface.co/hotshotco/Hotshot-XL" target="_blank">Hotshot-XL</a> made by the awesome <a className="text-stone-600 underline" href="https://hotshot.co" target="_blank">hotshot.co team</a>.
src/app/main.tsx CHANGED
@@ -4,6 +4,7 @@ import { cn } from "@/lib/utils"
4
  import { paragraphFont } from "@/app/interface/fonts"
5
  import { Background } from "./interface/background"
6
  import { Generate } from "./interface/generate"
 
7
 
8
  export function Main() {
9
 
@@ -15,6 +16,7 @@ export function Main() {
15
  )}>
16
  <Background />
17
  <Generate />
 
18
  </div>
19
  )
20
  }
 
4
  import { paragraphFont } from "@/app/interface/fonts"
5
  import { Background } from "./interface/background"
6
  import { Generate } from "./interface/generate"
7
+ import { BottomBar } from "./interface/bottom-bar"
8
 
9
  export function Main() {
10
 
 
16
  )}>
17
  <Background />
18
  <Generate />
19
+ <BottomBar />
20
  </div>
21
  )
22
  }