2025-04-28 00:47:36 +00:00
|
|
|
import { Button } from "@/components/ui/button";
|
|
|
|
|
import Image from "next/image";
|
|
|
|
|
|
|
|
|
|
export default function HomeBanner() {
|
|
|
|
|
return (
|
|
|
|
|
<div className="w-full">
|
2025-04-28 15:52:24 +00:00
|
|
|
<div className="container-main mt-10">
|
2025-04-28 00:47:36 +00:00
|
|
|
<div className="relative h-[240px] md:h-[260px] bg-[rgba(255,248,238,0.9)] rounded-2xl overflow-hidden flex items-center justify-between">
|
|
|
|
|
{/* Left: Text Content */}
|
2025-04-28 15:52:24 +00:00
|
|
|
<div className="z-10 py-8 flex-1 flex flex-col justify-center pl-4 sm:pl-6 md:pl-8 lg:pl-16 pr-4 sm:pr-6 md:pr-8 lg:pr-20">
|
|
|
|
|
<h1 className="text-[28px] sm:text-[32px] md:text-[35px] font-[500] text-[#151C4F] mb-2 tracking-tight">
|
2025-04-28 00:47:36 +00:00
|
|
|
1000 BLACK UMBRELLAS
|
|
|
|
|
</h1>
|
2025-04-28 15:52:24 +00:00
|
|
|
<p className="text-[#151C4F] text-[16px] sm:text-[18px] md:text-[21px] font-[400] mb-2 max-w-5xl">
|
|
|
|
|
Poems of absolute nakedness that chase the power of love. Daniel McGinn is<br className="hidden sm:block"/> one of the most admired poets in the underground American poetry scene.
|
2025-04-28 00:47:36 +00:00
|
|
|
</p>
|
|
|
|
|
<Button
|
2025-04-28 15:52:24 +00:00
|
|
|
className="bg-transparent border border-[#151C4F] text-[#151C4F] text-[16px] sm:text-[18px] md:text-[21px] w-fit px-4 sm:px-5 md:px-6 py-2 sm:py-3 font-[400] rounded-md mt-4 hover:bg-[#151C4F] hover:text-white transition-all duration-300 cursor-pointer"
|
2025-04-28 00:47:36 +00:00
|
|
|
size="lg"
|
|
|
|
|
>
|
|
|
|
|
PURCHASE EBOOK
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{/* Right: Book Cover */}
|
2025-04-28 15:52:24 +00:00
|
|
|
<div className="hidden md:block absolute" style={{ top: '85.44px', right: '20px' }}>
|
2025-04-28 00:47:36 +00:00
|
|
|
<Image
|
|
|
|
|
src="/book.png"
|
|
|
|
|
alt="1000 Black Umbrellas Book Cover"
|
|
|
|
|
width={185}
|
|
|
|
|
height={275}
|
|
|
|
|
className="object-contain rounded-xl"
|
|
|
|
|
priority
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|