import Link from "next/link"; import { format } from "date-fns"; import Markdown from "markdown-to-jsx"; import Hits from "../hits/Hits"; import { DateIcon, TagIcon, EditIcon, ViewsIcon } from "../icons"; import * as config from "../../lib/config"; import styles from "./Meta.module.css"; export type Props = { title: string; date: string; slug: string; tags?: string[]; }; const Meta = ({ title, date, slug, tags = [] }: Props) => ( <>