fastpocket/Frontend/sections/BlogSections/ThreeGridsWithAnOverlayCard...

143 lines
5.9 KiB
TypeScript

import React from "react";
function ThreeGridsWithAnOverlayCard() {
return (
<>
{/* <!-- Card Blog --> */}
<div className="max-w-[85rem] px-4 py-10 sm:px-6 lg:px-8 lg:py-14 mx-auto">
{/* <!-- Title --> */}
<div className="max-w-2xl mx-auto text-center mb-10 lg:mb-14">
<h2 className="text-2xl font-bold md:text-4xl md:leading-tight">
Insights
</h2>
<p className="mt-1 text-secondary-content">
Stay in the know with insights from industry experts.
</p>
</div>
{/* <!-- End Title --> */}
{/* <!-- Grid --> */}
<div className="grid sm:grid-cols-2 lg:grid-cols-3 gap-6">
{/* <!-- Card --> */}
<a className="group" href="#">
<div className="relative pt-[50%] sm:pt-[70%] rounded-xl overflow-hidden">
<img
className="w-full absolute top-0 start-0 object-cover group-hover:scale-105 transition-transform duration-500 ease-in-out rounded-xl"
src="https://images.unsplash.com/photo-1586232702178-f044c5f4d4b7?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1035&q=80"
alt="Image Description"
/>
<span className="absolute top-0 end-0 rounded-se-xl rounded-es-xl text-xs font-medium bg-secondary-content text-base-100 py-1.5 px-3">
Sponsored
</span>
</div>
<div className="mt-7">
<h3 className="text-xl font-semibold text-secondary-content group-hover:text-secondary-content">
Studio by FastPocket
</h3>
<p className="mt-3 text-secondary-content">
Produce professional, reliable streams easily leveraging
FastPocket's innovative broadcast studio
</p>
<p className="mt-5 inline-flex items-center gap-x-1 text-primary decoration-2 group-hover:underline font-medium">
Read more
<svg
className="flex-shrink-0 w-4"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m9 18 6-6-6-6" />
</svg>
</p>
</div>
</a>
{/* <!-- End Card --> */}
{/* <!-- Card --> */}
<a className="group" href="#">
<div className="relative pt-[50%] sm:pt-[70%] rounded-xl overflow-hidden">
<img
className="w-full absolute top-0 start-0 object-cover group-hover:scale-105 transition-transform duration-500 ease-in-out rounded-xl"
src="https://images.unsplash.com/photo-1542125387-c71274d94f0a?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2070&q=80"
alt="Image Description"
/>
</div>
<div className="mt-7">
<h3 className="text-xl font-semibold text-secondary-content group-hover:text-secondary-content">
Onsite
</h3>
<p className="mt-3 text-secondary-content">
Optimize your in-person experience with best-in-className
capabilities like badge printing and lead retrieval
</p>
<p className="mt-5 inline-flex items-center gap-x-1 text-primary decoration-2 group-hover:underline font-medium">
Read more
<svg
className="flex-shrink-0 w-4"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m9 18 6-6-6-6" />
</svg>
</p>
</div>
</a>
{/* <!-- End Card --> */}
{/* <!-- Card --> */}
<a
className="group relative flex flex-col w-full min-h-60 bg-center bg-cover rounded-xl hover:shadow-lg transition bg-[url('https://images.unsplash.com/photo-1634017839464-5c339ebe3cb4?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=3000&q=80')]"
href="#"
>
<div className="flex-auto p-4 md:p-6">
<h3 className="text-xl text-base-100/[.9] group-hover:text-base-100">
<span className="font-bold">FastPocket</span> Press publishes
books about economic and technological advancement.
</h3>
</div>
<div className="pt-0 p-4 md:p-6">
<div className="inline-flex items-center gap-2 text-sm font-medium text-base-100 group-hover:text-base-100/[.7]">
Visit the site
<svg
className="flex-shrink-0 w-4"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
>
<path d="m9 18 6-6-6-6" />
</svg>
</div>
</div>
</a>
{/* <!-- End Card --> */}
</div>
{/* <!-- End Grid --> */}
</div>
{/* <!-- End Card Blog --> */}
</>
);
}
export default ThreeGridsWithAnOverlayCard;