Hossein Salari 8dda6b05d7
All checks were successful
Build and Deploy Next.js + Nginx Docker Image / build-and-deploy (push) Successful in 2m50s
Build and Deploy Next.js + Nginx Docker Image / deploy (push) Successful in 8s
feat: connect LLM + LoRA tab to backend api
2026-02-26 17:34:37 +03:30

50 lines
1.4 KiB
JavaScript
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Box, HStack, Image, Text, VStack } from "@chakra-ui/react";
export default function AppHeader() {
return (
<Box
w="100%"
h="92px"
borderBottom="1px solid"
borderColor="gray.200"
bg="#fdfbff"
as={HStack}
alignItems="center"
justifyContent="space-between"
px={"20px"}
zIndex={10}
position="fixed"
top={0}
>
<HStack alignItems={"end"} height={"100%"} py={"10px"}>
<Image
src="/generative-logo.png"
w={"80px"}
h={"70px"}
loading="lazy"
/>
<VStack alignItems={"start"} justifyContent={"end"} height={"100%"}>
<Text fontWeight={"bold"} fontSize={"20px"}>
سامانه تولید محتوای هوشمند
</Text>
<Text>
سامانه جامع تولید محتوا با استفاده از مدلهای زبانی و مولد تصویر و
ویدئو
</Text>
</VStack>
</HStack>
<VStack
w={"fit-content"}
alignItems={"center"}
justifyContent={"center"}
py={"10px"}
>
<Image src="./logob.png" />
<Text fontSize="xs" fontWeight="bold">
موسسه تولید سیستم های خبره و هوشمند اسلامی باقرالعلوم(ع)
</Text>
</VStack>
</Box>
);
}