mirror of
https://github.com/pheralb/svgl.git
synced 2025-02-06 15:17:58 +08:00
20 lines
411 B
JavaScript
20 lines
411 B
JavaScript
import React from "react";
|
|
import { Center, Text, VStack } from "@chakra-ui/react";
|
|
import Link from "next/link";
|
|
|
|
const Index = () => {
|
|
return (
|
|
<>
|
|
<Center h="100px" mt="8" mb="8" color="gray.500">
|
|
<VStack>
|
|
<Link href="https://github.com/pheralb" passHref>
|
|
Built by Pablo Hdez
|
|
</Link>
|
|
</VStack>
|
|
</Center>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Index;
|