diff --git a/dist/logob.webp b/dist/logob.webp new file mode 100644 index 0000000..7be49b6 Binary files /dev/null and b/dist/logob.webp differ diff --git a/public/logob.webp b/public/logob.webp new file mode 100644 index 0000000..7be49b6 Binary files /dev/null and b/public/logob.webp differ diff --git a/src/components/AppHeader.jsx b/src/components/AppHeader.jsx new file mode 100644 index 0000000..f4d38a3 --- /dev/null +++ b/src/components/AppHeader.jsx @@ -0,0 +1,90 @@ +"use client"; + +import React from "react"; +import { Box, HStack, Image, Text, VStack } from "@chakra-ui/react"; + +function AppHeaderRoot({ children, ...props }) { + return ( + + + {children} + + + ); +} + +function BrandSection({ children, ...props }) { + return ( + + {children} + + ); +} + +function Logo(props) { + return ; +} + +function Brand({ children, ...props }) { + return ( + + {children} + + ); +} + +function Title({ children, ...props }) { + return ( + + {children} + + ); +} + +function Description({ children, ...props }) { + return {children}; +} + +function Bi({ logoSrc = "/logob.png", ...props }) { + return ( + + + + موسسه تولید سیستم های خبره و هوشمند اسلامی باقرالعلوم(ع) + + + ); +} + +export const AppHeader = Object.assign(AppHeaderRoot, { + BrandSection, + Logo, + Brand, + Title, + Description, + Bi, +});