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: '/book8.png', }, { title: 'Authority', author: 'Jeff Vandermeer', price: '$11.99', cover: '/book9.png', }, { title: 'Babe Hager', author: 'Babe Hager', price: '$2.99', cover: '/book10.png', }, { title: 'Never Flinch', author: 'Stephen King', price: '$16.99', cover: '/book11.png', }, { title: 'The Obsession', author: 'Jesse Q. Sutanto', price: '$8.99', cover: '/book12.png', }, { title: 'Unlikely Story', author: 'Ali Rosen', price: '$2.99', cover: '/book13.png', }, { title: 'Thrill Ride', author: 'Amy Ratcliffe', price: '$9.99', cover: '/book14.png', }, ]; export default function NewRelease() { return (