diff --git a/src/layout/footer/index.tsx b/src/layout/footer/index.tsx new file mode 100644 index 0000000..93ce43e --- /dev/null +++ b/src/layout/footer/index.tsx @@ -0,0 +1,21 @@ +import CustomLink from "@/common/link"; +import { Flex, Heading, HStack, Icon, Text } from "@chakra-ui/react"; +import { RocketLaunch, TwitterLogo } from "phosphor-react"; +import React from "react"; + +type Props = {}; + +const Index = (props: Props) => { + return ( + + + + + Created by Pablo + + + + ); +}; + +export default Index;