@taylorwhite/copacetic-frontity-theme
Version:
A frontity theme made with Chakra UI
29 lines (26 loc) • 757 B
JavaScript
import { Avatar, Box, Text, Flex } from "@chakra-ui/core";
import React from "react";
import Link from "../link";
const AuthorBio = ({ image, description, name, link }) => (
<Flex maxWidth="700px" my={4} direction={{ base: "column", md: "row" }}>
<Avatar size="xl" src={image} />
<Box size={6} flexShrink="0" />
<Box fontSize={{ base: "md", md: "lg" }}>
<Text>
by{" "}
<Link
link={link}
fontWeight="bold"
color="accent.400"
_hover={{ textDecoration: "underline" }}
>
{name}
</Link>
</Text>
{description && (
<Text mt={6} dangerouslySetInnerHTML={{ __html: description }} />
)}
</Box>
</Flex>
);
export default AuthorBio;