Quiz-PDF/Documentation/docs/components/blog sections/HeroStyle.md

88 lines
3.2 KiB
Markdown

---
sidebar_position: 2
---
# Hero Style
![Cards](/img/hero-style.png)
```jsx title="Frontend/sections/BlogSections/HeroStyle.tsx"
<>
{/* <!-- Card Blog --> */}
<div className="max-w-[85rem] px-4 py-10 sm:px-6 lg:px-8 lg:py-14 mx-auto">
{/* <!-- Grid --> */}
<div className="grid sm:grid-cols-2 sm:items-center gap-8">
<div className="sm:order-2">
<div className="relative pt-[50%] sm:pt-[100%] rounded-lg">
<img
className="w-full absolute top-0 start-0 object-cover rounded-lg"
src="https://images.unsplash.com/photo-1606868306217-dbf5046868d2?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1981&q=80"
alt="Image Description"
/>
</div>
</div>
{/* <!-- End Col --> */}
<div className="sm:order-1">
<p className="mb-5 inline-flex items-center gap-1.5 py-1.5 px-3 rounded-md text-xs font-medium bg-base-100 text-secondary-content">
Business insight
</p>
<h2 className="text-2xl font-bold md:text-3xl lg:text-4xl lg:leading-tight xl:text-5xl xl:leading-tight text-secondary-content">
<a className="hover:text-primary" href="#">
How to get buy-in and budget for direct hiring
</a>
</h2>
{/* <!-- Avatar --> */}
<div className="mt-6 sm:mt-10 flex items-center">
<div className="flex-shrink-0">
<img
className="w-10 sm:h-14 sm:w-14 rounded-full"
src="https://images.unsplash.com/photo-1669837401587-f9a4cfe3126e?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=facearea&facepad=2&w=320&h=320&q=80"
alt="Image Description"
/>
</div>
<div className="ms-3 sm:ms-4">
<p className="sm:mb-1 font-semibold text-secondary-content">
Louise Donadieu
</p>
<p className="text-xs text-secondary-content">
Strategic Marketing Consultant
</p>
</div>
</div>
{/* <!-- End Avatar --> */}
<div className="mt-5">
<a
className="inline-flex items-center gap-x-1.5 text-primary decoration-2 hover:underline font-medium"
href="#"
>
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"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="m9 18 6-6-6-6" />
</svg>
</a>
</div>
</div>
{/* <!-- End Col --> */}
</div>
{/* <!-- End Grid --> */}
</div>
{/* <!-- End Card Blog --> */}
</>
```