nyx-dashboard/components/Footer/Footer.js

23 lines
555 B
JavaScript
Raw Normal View History

2022-01-08 22:38:17 +01:00
import { Box, Stack } from "@chakra-ui/react";
import * as React from "react";
import { Copyright } from "./Copyright";
import { SocialMediaLinks } from "./SocialMediaLinks";
2021-06-29 01:58:12 +02:00
export const Footer = () => (
2022-01-08 22:38:17 +01:00
<Box
as="footer"
role="contentinfo"
mx="auto"
maxW="7xl"
py="12"
px={{ base: "4", md: "8" }}
>
<Stack>
<Stack direction="row" spacing="4" align="center" justify="space-between">
<SocialMediaLinks />
</Stack>
<Copyright alignSelf={{ base: "center", sm: "start" }} />
</Stack>
</Box>
);