26 lines
532 B
JavaScript
Raw Normal View History

2022-01-16 22:27:55 +00:00
import React from "react";
import {
Icon,
Link,
Center,
useColorModeValue,
HStack,
} from "@chakra-ui/react";
import { IoRocketOutline } from "react-icons/io5";
2022-01-16 22:27:55 +00:00
const Index = () => {
2022-03-25 14:57:20 +00:00
const color = useColorModeValue("gray.400", "gray.600");
2022-01-16 22:27:55 +00:00
return (
<>
<HStack color={color} ml="6" spacing="3">
<Icon boxSize="6" as={IoRocketOutline} />
<Link href="https://github.com/pheralb" isExternal="true">
Built by Pablo
</Link>
</HStack>
2022-01-16 22:27:55 +00:00
</>
);
};
export default Index;