import Link from "../Link"; import Image from "../Image"; import { styled } from "../../lib/styles/stitches.config"; import { authorName } from "../../lib/config"; import type { ComponentProps } from "react"; import selfieJpg from "../../public/static/images/selfie.jpg"; const RoundedImage = styled(Image, { width: "50px", height: "50px", border: "1px solid $light", borderRadius: "50%", "@medium": { width: "70px", height: "70px", borderWidth: "2px", }, }); const SelfieLink = styled(Link, { display: "inline-flex", alignItems: "center", color: "$mediumDark", "&:hover": { color: "$link", "@medium": { [`${RoundedImage}`]: { borderColor: "$linkUnderline", }, }, }, }); const Name = styled("span", { margin: "0 0.6em", fontSize: "1.2em", fontWeight: 500, lineHeight: 1, "@medium": { display: "none", }, }); export type SelfieProps = Omit, "href">; const Selfie = ({ ...rest }: SelfieProps) => { return ( ); }; export default Selfie;