BennyKok commited on
Commit
ca5e4b8
·
1 Parent(s): 5d7708a
Files changed (1) hide show
  1. src/app/page.tsx +2 -6
src/app/page.tsx CHANGED
@@ -34,7 +34,7 @@ export default function Home() {
34
  }, [runId]);
35
 
36
  return (
37
- <main className="flex min-h-screen flex-col items-center justify-between p-24">
38
  <Card className="w-full max-w-[500px]">
39
  <CardHeader>
40
  Comfy Deploy - Vector Line Art Tool
@@ -68,11 +68,7 @@ export default function Home() {
68
  value={prompt}
69
  onChange={(e) => setPrompt(e.target.value)}
70
  />
71
- <Button
72
- type="submit"
73
- className="flex gap-2"
74
- disabled={loading}
75
- >
76
  Generate {loading && <LoadingIcon />}
77
  </Button>
78
 
 
34
  }, [runId]);
35
 
36
  return (
37
+ <main className="flex min-h-screen flex-col items-center justify-between mt-10">
38
  <Card className="w-full max-w-[500px]">
39
  <CardHeader>
40
  Comfy Deploy - Vector Line Art Tool
 
68
  value={prompt}
69
  onChange={(e) => setPrompt(e.target.value)}
70
  />
71
+ <Button type="submit" className="flex gap-2" disabled={loading}>
 
 
 
 
72
  Generate {loading && <LoadingIcon />}
73
  </Button>
74