Files
ballistic-builder/src/components/Header/index.tsx

40 lines
1.3 KiB
TypeScript
Raw Normal View History

2024-11-21 13:03:00 -05:00
import { Box, Flex, Link, Heading } from "@chakra-ui/react";
2024-11-20 14:53:30 -05:00
2024-11-21 13:03:00 -05:00
const Header: React.FC = () => {
2024-11-20 14:53:30 -05:00
return (
2024-11-21 13:03:00 -05:00
<>
<Box as="header" bg="primary" color="white" px="6" py="4" shadow="md">
<Flex justify="space-between" align="center" maxW="5xl" mx="auto">
<Heading as="h1" size="lg">
2024-11-14 17:46:13 -05:00
2024-11-21 13:03:00 -05:00
{/* <NextLink href="/" passHref> */}
<Link color="#374151" _hover={{ textDecoration: "none" }}>
Ballistic Builder
</Link>
{/* </NextLink> */}
2024-11-14 17:46:13 -05:00
2024-11-21 13:03:00 -05:00
</Heading>
<Flex as="nav" gap="6">
{/* <NextLink href="/builder" passHref> */}
<Link color="#374151" _hover={{ textDecoration: "underline" }}>
Builder
</Link>
{/* </NextLink> */}
{/* <NextLink href="/products" passHref> */}
<Link color="#374151" _hover={{ textDecoration: "underline" }}>
Products
</Link>
{/* </NextLink> */}
{/* <NextLink href="/auth/signin" passHref> */}
<Link color="#374151" _hover={{ textDecoration: "underline" }}>
Sign In
</Link>
{/* </NextLink> */}
</Flex>
</Flex>
</Box>
</>
);
};
export default Header;