a56d26387e
All checks were successful
Release to Staging / build_and_release (push) Successful in 47s
38 lines
958 B
TypeScript
38 lines
958 B
TypeScript
import '../styles/cardBlogs.css'
|
|
|
|
type BlogCardProps = {
|
|
backgroundLink: string
|
|
}
|
|
|
|
export const BlogCard = ({ backgroundLink }: BlogCardProps) => {
|
|
return (
|
|
<a className='cardBlogMainWrapperLink' href='blog-inner.html'>
|
|
<div
|
|
className='cardBlogMain'
|
|
style={{
|
|
background: `url("${backgroundLink}") center / cover no-repeat`
|
|
}}
|
|
>
|
|
<div
|
|
className='cardBlogMainInside'
|
|
>
|
|
<h3
|
|
style={{
|
|
display: '-webkit-box',
|
|
WebkitBoxOrient: 'vertical',
|
|
overflow: 'hidden',
|
|
WebkitLineClamp: 2,
|
|
fontSize: '20px',
|
|
lineHeight: 1.5,
|
|
color: 'rgba(255, 255, 255, 0.75)',
|
|
textShadow: '0 0 8px rgba(0, 0, 0, 0.25)'
|
|
}}
|
|
>
|
|
This is a blog title, the best blog title in the world!
|
|
</h3>
|
|
</div>
|
|
</div>{' '}
|
|
</a>
|
|
)
|
|
}
|