update
All checks were successful
Build and Deploy Next.js + Nginx Docker Image / build-and-deploy (push) Successful in 3m0s
Build and Deploy Next.js + Nginx Docker Image / deploy (push) Successful in 7s

This commit is contained in:
Hossein Salari 2026-03-16 11:52:12 +03:30
parent b427a8cd1e
commit 75600bcf62
3 changed files with 9 additions and 8 deletions

View File

@ -132,10 +132,11 @@ export default function LlmPanel({ filters }) {
leftIcon={<FaPlay />}
type="submit"
isLoading={isGeneratingText}
alignSelf={"end"}
>
اجرا
</Button>
<Divider my={"20px"} borderColor={"gray.300"} />
{/* <Divider my={"20px"} borderColor={"gray.300"} />
<TableContainer w={"100%"} mt={"10px"}>
<Table>
<Thead>
@ -145,7 +146,7 @@ export default function LlmPanel({ filters }) {
</Thead>
<Tbody></Tbody>
</Table>
</TableContainer>
</TableContainer> */}
<Divider my={"20px"} borderColor={"gray.300"} />
<ResultBox
type="llm"

View File

@ -118,8 +118,6 @@ export default function TextImagePanel({ filters }) {
defaultValue={42}
/>
</FormControl>
</HStack>
<HStack>
<FormControl as={VStack} alignItems={"start"}>
<HStack alignItems={"start"}>
<Icon
@ -182,10 +180,11 @@ export default function TextImagePanel({ filters }) {
leftIcon={<FaPlay />}
type="submit"
isLoading={isGeneratingImage}
alignSelf={"end"}
>
اجرا
</Button>
<Divider my={"20px"} borderColor={"gray.300"} />
{/* <Divider my={"20px"} borderColor={"gray.300"} />
<TableContainer w={"100%"} mt={"10px"}>
<Table>
<Thead>
@ -195,7 +194,7 @@ export default function TextImagePanel({ filters }) {
</Thead>
<Tbody></Tbody>
</Table>
</TableContainer>
</TableContainer> */}
<Divider my={"20px"} borderColor={"gray.300"} />
<ResultBox
type="image"

View File

@ -157,10 +157,11 @@ export default function TextVideoPanel({ filters }) {
leftIcon={<FaPlay />}
type="submit"
isLoading={isGeneratingVideo}
alignSelf={"end"}
>
اجرا
</Button>
<Divider my={"20px"} borderColor={"gray.300"} />
{/* <Divider my={"20px"} borderColor={"gray.300"} />
<TableContainer w={"100%"} mt={"10px"}>
<Table>
<Thead>
@ -170,7 +171,7 @@ export default function TextVideoPanel({ filters }) {
</Thead>
<Tbody></Tbody>
</Table>
</TableContainer>
</TableContainer> */}
<Divider my={"20px"} borderColor={"gray.300"} />
<ResultBox type="video" loading={isGeneratingVideo} resultData={videos} />
</VStack>