svgl/pages/index.js

39 lines
1.1 KiB
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 overflow="hidden">
2022-01-21 22:30:32 +00:00
<Container maxW={{ base: "100%", md: "90%" }}>
<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>
<Show delay="0.2">
<Search />
</Show>
<Show delay="0.2">
<Box mt={{ base: 4, md: 8 }}>
<Items />
</Box>
</Show>
2022-01-16 22:27:55 +00:00
</Box>
</Box>
2022-01-21 22:30:32 +00:00
</Container>
2022-01-16 22:27:55 +00:00
</Box>
</>
);
2022-01-16 14:40:15 +00:00
}