mirror of
https://github.com/pheralb/svgl.git
synced 2024-11-10 14:46:54 +08:00
21 lines
456 B
JavaScript
21 lines
456 B
JavaScript
import React from "react";
|
|
import { Center, useColorModeValue, VStack } from "@chakra-ui/react";
|
|
import Link from "next/link";
|
|
|
|
const Index = () => {
|
|
const color = useColorModeValue("gray.400", "gray.600");
|
|
return (
|
|
<>
|
|
<Center color={color}>
|
|
<VStack>
|
|
<Link href="https://github.com/pheralb" passHref>
|
|
Built by Pablo Hdez
|
|
</Link>
|
|
</VStack>
|
|
</Center>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Index;
|