@@ -117,53 +117,50 @@ export default function WorkflowPage({
117117 ← All use cases
118118 </ Link >
119119
120- < div className = "mb-12" >
121- < div className = "flex items-start gap-6 mb-6 " >
122- < div className = "flex-shrink-0 w-16 h-16 bg-white rounded-xl shadow-sm flex items-center justify-center" >
123- < IconComponent className = "w-8 h-8 text-gray-600" />
120+ < div className = "mb-12 flex items-center justify-between gap-6 " >
121+ < div className = "flex items-center gap-6 min-w-0 " >
122+ < div className = "flex-shrink-0 w-24 h-24 bg-white rounded-2xl shadow-sm flex items-center justify-center" >
123+ < IconComponent className = "w-12 h-12 text-gray-600" />
124124 </ div >
125- < div >
125+ < div className = "min-w-0" >
126126 < h1 className = "text-6xl font-light text-gray-900" >
127127 { workflow . name }
128128 </ h1 >
129+ < div className = "flex flex-wrap items-center gap-2 mt-3" >
130+ { workflow . tags . map ( ( tag ) => (
131+ < span
132+ key = { tag }
133+ className = "px-3 py-1 bg-gray-200 text-gray-700 rounded-full text-sm"
134+ >
135+ { tag }
136+ </ span >
137+ ) ) }
138+ </ div >
129139 </ div >
130140 </ div >
131141
132- < p className = "text-3xl text-gray-500 mb-6" > { workflow . description } </ p >
133-
134- < div className = "flex flex-wrap items-center gap-3 mb-8" >
135- { workflow . tags . map ( ( tag ) => (
136- < span
137- key = { tag }
138- className = "px-3 py-1 bg-gray-200 text-gray-700 rounded-full text-sm"
139- >
140- { tag }
141- </ span >
142- ) ) }
143- </ div >
144-
145142 < a
146143 href = { `${ import . meta. env . VITE_APP_URL } /templates/${ workflow . id } /try` }
147- className = "inline-block text-lg bg-black text-white px-8 py-4 rounded-lg hover:bg-gray-800 transition-colors"
144+ className = "flex-shrink-0 inline-block text-lg bg-black text-white px-8 py-4 rounded-lg hover:bg-gray-800 transition-colors"
148145 >
149146 Try this workflow
150147 </ a >
151148 </ div >
152149
153150 { /* Workflow Preview */ }
154151 < section className = "mb-12" >
155- < h2 className = "text-2xl font-light text-gray-900 mb-4" >
156- Workflow Preview
157- </ h2 >
158152 < WorkflowPreview
159153 templateId = { workflow . id }
160- className = "h-[40rem] border border-gray-200"
154+ className = "h-[40rem]"
155+ showBackground = { false }
161156 />
162157 </ section >
163158
159+ < p className = "text-3xl text-gray-500 mb-12" > { workflow . description } </ p >
160+
164161 { /* Other Workflows */ }
165162 { otherWorkflows . length > 0 && (
166- < section className = "mt-32 pt-8 border-t border-gray-200 " >
163+ < section className = "mt-32" >
167164 < h2 className = "text-2xl font-light text-gray-900 mb-6" >
168165 Other Workflows
169166 </ h2 >
0 commit comments