File size: 648 Bytes
3d701d8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//import React from "react";
import { Box, HStack, Heading, Image, Spacer } from "@chakra-ui/react";

const Header = () => {
  return (
    <Box
      as="header"
      position="fixed"
      top="0"
      left="0"
      right="0"
      zIndex="sticky"
      bg="white"
      boxShadow="sm"
      px={6}
      py={4}
      borderBottom="4px solid"
      borderColor="brand.yellow"
    >
      <HStack spacing={3}>
        <Image src="/vite.svg" alt="EU Flag" boxSize="30px" />
        <Heading size="md" color="brand.blue">
          EU Funding Portal
        </Heading>
        <Spacer />
      </HStack>
    </Box>
  );
};

export default Header