import Image from 'next/image'; import { Heart, ChevronRight } from 'lucide-react'; import { Button } from '@/components/ui/button'; const books = [ { title: 'Brutal', author: 'Hoosh Ink', price: '$4.99', cover: '/book1.png', }, { title: 'Authority', author: 'Jeff Vandermeer', price: '$11.99', cover: '/book2.png', }, { title: 'Babe Hager', author: 'Babe Hager', price: '$2.99', cover: '/book3.png', }, { title: 'Never Flinch', author: 'Stephen King', price: '$16.99', cover: '/book4.png', }, { title: 'The Obsession', author: 'Jesse Q. Sutanto', price: '$8.99', cover: '/book5.png', }, { title: 'Unlikely Story', author: 'Ali Rosen', price: '$2.99', cover: '/book6.png', }, { title: 'Thrill Ride', author: 'Amy Ratcliffe', price: '$9.99', cover: '/book7.png', }, ]; export default function BestSeller() { return (

Best Sellers

See more
{books.map((book) => (
{book.title}
{book.title}
{book.author} {book.price}
))}
); }