diff --git a/web/public/example-workflows/IPAdapter.jpg b/web/public/example-workflows/IPAdapter.jpg deleted file mode 100644 index 3e5598a..0000000 Binary files a/web/public/example-workflows/IPAdapter.jpg and /dev/null differ diff --git a/web/public/example-workflows/img2img.jpg b/web/public/example-workflows/img2img.jpg deleted file mode 100644 index e3e818d..0000000 Binary files a/web/public/example-workflows/img2img.jpg and /dev/null differ diff --git a/web/public/example-workflows/ipadapter.webp b/web/public/example-workflows/ipadapter.webp new file mode 100644 index 0000000..1375a58 Binary files /dev/null and b/web/public/example-workflows/ipadapter.webp differ diff --git a/web/public/example-workflows/text2img.jpg b/web/public/example-workflows/text2img.jpg deleted file mode 100644 index 1fae03c..0000000 Binary files a/web/public/example-workflows/text2img.jpg and /dev/null differ diff --git a/web/public/example-workflows/txt2img-lcm.webp b/web/public/example-workflows/txt2img-lcm.webp new file mode 100644 index 0000000..ef8e543 Binary files /dev/null and b/web/public/example-workflows/txt2img-lcm.webp differ diff --git a/web/public/example-workflows/txt2img.webp b/web/public/example-workflows/txt2img.webp new file mode 100644 index 0000000..9f5ee20 Binary files /dev/null and b/web/public/example-workflows/txt2img.webp differ diff --git a/web/public/example-workflows/upscale.webp b/web/public/example-workflows/upscale.webp new file mode 100644 index 0000000..7c8897d Binary files /dev/null and b/web/public/example-workflows/upscale.webp differ diff --git a/web/src/app/(app)/examples/page.tsx b/web/src/app/(app)/examples/page.tsx index 8b90efb..aeec4a6 100644 --- a/web/src/app/(app)/examples/page.tsx +++ b/web/src/app/(app)/examples/page.tsx @@ -1,6 +1,7 @@ import { Button } from "@/components/ui/button"; import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "@/components/ui/card"; import Image from "next/image"; +import Link from "next/link"; export default function Page() { return ; @@ -19,30 +20,39 @@ type exampleWorkflow = { const exampleWorkflows: exampleWorkflow[] = [ { - title: "txt2img", + title: "Txt2Img SDXL", description: "The basic workflow, type a prompt and generate images based on that.", previewURL: '', image: { - src: '/example-workflows/IPAdapter.jpg', + src: '/example-workflows/txt2img.webp', alt: 'IPAdapter workflow', } }, { - title: "IPAdapter [SDXL]", + title: "Txt2Img LCM SDXL", + description: "Images in a couple of seconds, increase the speed of each generation using LCM Lora.", + previewURL: 'https://www.comfydeploy.com/share/comfy-deploy-example-lcm-sdxl', + image: { + src: '/example-workflows/txt2img-lcm.webp', + alt: 'txt2img LCM SDXL', + } + }, + { + title: "IPAdapter SDXL", description: "Load images and use them as reference for new generations.", - previewURL: '', + previewURL: 'https://www.comfydeploy.com/share/comfy-deploy-example-ip-adapter-sdxl', image: { - src: '/example-workflows/img2img.jpg', + src: '/example-workflows/ipadapter.webp', alt: 'IPAdapter workflow', } }, { - title: "img2img inpainting", - description: "Use an image as base and modify certain areas that you select.", - previewURL: '', + title: "Upscale and Add Detail SDXL", + description: "Upscale and Add Details to your creations", + previewURL: 'https://www.comfydeploy.com/share/comfy-deploy-example-upscale-and-add-detail-sdxl', image: { - src: '/example-workflows/text2img.jpg', - alt: 'img2img inpainting workflow', + src: '/example-workflows/upscale.webp', + alt: 'Upscale and Add Detail SDXL', } } ]; @@ -57,7 +67,7 @@ async function Examples() {

Text to Image, Image to Image, IPAdapter, and more. Here are some examples that you can use to deploy your workflow.

-
+
{exampleWorkflows.map(workflow => { return @@ -67,9 +77,11 @@ async function Examples() { {workflow.image.alt} - - - + + + {/* */} ; })}