import { Link, navigate } from "gatsby"; import React, { FunctionComponent } from "react"; import { ThemeSwitcher } from "../ThemeSwitcher/ThemeSwitcher"; import * as styles from "./PostHeader.module.scss"; import { Image } from "@/components/Image"; type Props = { author: { name: string; photo: string } }; export const PostHeader: FunctionComponent = ({ author }) => { return (
{author.name} Rick van Lieshout rickvanLieshout.com navigate("/")} style={{ lineHeight: "50px", marginRight: "10px", cursor: "pointer" }} > ↩ Back to articles
); };