import { formatDate } from '@/lib/helpers' import { NextSeo } from 'next-seo' import Image from 'next/image' import Link from 'next/link' import React from 'react' import style from './Book.module.css' import ExternalLink from '../ExternalLink/ExternalLink' function Book ({ attributes, html }) { return ( <>

{attributes.title}
by {attributes.author}

Back...
{attributes.thumbnailUrl && }
(no review)

' }} />

Genres: {attributes.tags}
Rating: {attributes.stars}/5
Read on: {formatDate(attributes.readDate)}

View on The StoryGraph

) } export default Book