import React from 'react' import PropTypes from 'prop-types' import { Link } from 'gatsby' import posed from 'react-pose' import { useMeta } from '../../hooks/use-meta' import { moveInBottom } from '../atoms/Transitions' import { ReactComponent as Logo } from '../../images/logo.svg' import styles from './LogoUnit.module.scss' LogoUnit.propTypes = { minimal: PropTypes.bool } export default function LogoUnit({ minimal }) { const { title, tagline } = useMeta() const Animation = posed.div(moveInBottom) return (

{title.toLowerCase()}

{tagline.toLowerCase()}

) }