2022-01-16 22:27:55 +00:00
|
|
|
import React from "react";
|
2022-04-22 15:13:38 +01:00
|
|
|
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 (
|
|
|
|
<>
|
2022-04-22 15:13:38 +01:00
|
|
|
<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;
|