@@ -37,7 +37,7 @@ export default function ImageDisplay({
37
37
{ /* Main uploaded image */ }
38
38
< div className = "mb-12 max-w-3xl mx-auto" >
39
39
< p className = "text-base text-gray-400 mb-2" > Original</ p >
40
- < div className = "relative w-full aspect-video border border-gray-800 rounded-lg" >
40
+ < div className = "relative w-full aspect-video border border-gray-700 rounded-lg" >
41
41
< Image
42
42
src = { uploadedImage }
43
43
alt = { uploadedCaption }
@@ -56,7 +56,7 @@ export default function ImageDisplay({
56
56
{ gridImages . map ( ( image , index ) => (
57
57
< div className = "flex flex-col" >
58
58
< p className = "text-base text-gray-400 mb-2" > Style { index + 1 } </ p >
59
- < Card key = { index } className = "overflow-hidden border border-gray-800 rounded-lg" >
59
+ < Card key = { index } className = "overflow-hidden border border-gray-700 rounded-lg" >
60
60
< CardContent className = "p-0" >
61
61
< div
62
62
className = { `relative aspect-video h-full ${
@@ -67,13 +67,13 @@ export default function ImageDisplay({
67
67
< Image src = { image . src } alt = { image . caption } fill className = "object-cover" />
68
68
) : (
69
69
< div className = "absolute inset-0 flex flex-col items-center justify-center p-4" >
70
- < LoaderCircleIcon className = "size-8 animate-spin text-blue-500 mb-2 " />
71
- < p className = "text-sm text-white text-center" > Processing : { image . message } </ p >
70
+ < LoaderCircleIcon className = "size-8 animate-spin text-blue-500 mb-4 " />
71
+ < p className = "text-sm text-white text-center" > Model : { image . message } </ p >
72
72
</ div >
73
73
) }
74
74
</ div >
75
75
{ image . status === "completed" && (
76
- < p className = "p-2 text-center text-xs text-gray-200 bg-gray-800" >
76
+ < p className = "p-2 text-center text-xs text-gray-400 bg-gray-800" >
77
77
{ image . caption }
78
78
</ p >
79
79
) }
0 commit comments