svgl/pages/index.js

33 lines
886 B
JavaScript
Raw Normal View History

2022-01-21 22:30:32 +00:00
import { chakra, Box, Container } 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-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
<>
<Box mt="10">
<Box w="full" border="solid 1px transparent">
<Box textAlign="center">
<Show delay="0">
<chakra.h1
fontSize={{ base: "30px", sm: "35px", md: "6xl" }}
letterSpacing="tight"
lineHeight="short"
fontWeight="extrabold"
mb={{ base: 4, md: 8 }}
>
Beautiful SVG vector icons
</chakra.h1>
</Show>
<Search />
<Box mt={{ base: 4, md: 8 }}>
<Items />
2022-01-16 22:27:55 +00:00
</Box>
</Box>
</Box>
2022-01-16 22:27:55 +00:00
</Box>
</>
);
2022-01-16 14:40:15 +00:00
}