mirror of
https://github.com/pheralb/svgl.git
synced 2024-11-10 14:46:54 +08:00
⚒️ Create footer.
This commit is contained in:
parent
340d1f3be6
commit
0a12c4c519
21
src/layout/footer/index.tsx
Normal file
21
src/layout/footer/index.tsx
Normal file
@ -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 (
|
||||||
|
<Flex direction="column" pt="8" pb="8" justifyContent="center" alignItems="center">
|
||||||
|
<HStack>
|
||||||
|
<Icon as={RocketLaunch} />
|
||||||
|
<CustomLink href="https://twitter.com/pheralb_" external={true}>
|
||||||
|
Created by Pablo
|
||||||
|
</CustomLink>
|
||||||
|
</HStack>
|
||||||
|
</Flex>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default Index;
|
Loading…
Reference in New Issue
Block a user