2022-01-16 22:27:55 +00:00
|
|
|
import React from "react";
|
2022-03-25 14:57:20 +00:00
|
|
|
import { Center, useColorModeValue, VStack } from "@chakra-ui/react";
|
2022-01-16 22:27:55 +00:00
|
|
|
import Link from "next/link";
|
|
|
|
|
|
|
|
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-03-25 14:57:20 +00:00
|
|
|
<Center color={color}>
|
2022-03-08 17:17:05 +00:00
|
|
|
<VStack>
|
|
|
|
<Link href="https://github.com/pheralb" passHref>
|
|
|
|
Built by Pablo Hdez
|
|
|
|
</Link>
|
|
|
|
</VStack>
|
2022-01-16 22:27:55 +00:00
|
|
|
</Center>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default Index;
|