svgl/pages/index.js

31 lines
813 B
JavaScript
Raw Normal View History

2022-03-03 14:48:37 +00:00
import { chakra, Box, Container, Text, Flex, Icon } from "@chakra-ui/react";
2022-01-16 22:27:55 +00:00
import Search from "components/search";
2022-01-21 22:30:32 +00:00
import Items from "components/items/all";
2022-01-16 22:27:55 +00:00
import Show from "animations/show";
2022-03-03 14:48:37 +00:00
import { rocket } from "components/svg";
2022-01-16 14:40:15 +00:00
2022-01-16 22:27:55 +00:00
export default function Index() {
2022-01-16 14:40:15 +00:00
return (
2022-01-16 22:27:55 +00:00
<>
2022-03-03 14:48:37 +00:00
<Box mt="6">
<Box w="full" border="solid 1px transparent">
2022-03-03 14:48:37 +00:00
<chakra.h1
fontSize={{ base: "25px", sm: "35px", md: "6xl" }}
textAlign="center"
letterSpacing="tight"
lineHeight="short"
fontWeight="extrabold"
mb="3"
>
Beautiful SVG vector logos
</chakra.h1>
<Search />
2022-02-19 14:04:44 +00:00
<Box mt={{ base: 4, md: 8 }}>
<Items />
2022-01-16 22:27:55 +00:00
</Box>
</Box>
2022-01-16 22:27:55 +00:00
</Box>
</>
);
2022-01-16 14:40:15 +00:00
}