devscard/src/web/sections/favorites/book-tile.astro
2023-02-03 23:41:11 +01:00

21 lines
690 B
Text

---
import type { Book } from '@/types/sections/favorites-section.types';
import Photo from '@/components/photo.astro';
import Typography from '@/web/components/typography.astro';
export interface Props extends Book {}
const { author, image, title, url } = Astro.props;
---
<a href={url} target="_blank" class="flex w-full flex-col gap-3 transition duration-300 hover:translate-y-2">
<Photo src={image} alt={title} class="aspect-[3/4] rounded-lg object-cover shadow-md" width={300} height={400} />
<div class="w-full gap-1">
<Typography variant="tile-title">
{title}
</Typography>
<Typography variant="tile-subtitle">
{author}
</Typography>
</div>
</a>