forked from mrwyndham/fastpocket
73 lines
3.3 KiB
Markdown
73 lines
3.3 KiB
Markdown
---
|
|
sidebar_position: 2
|
|
---
|
|
|
|
# Masonry 4 Cols
|
|
|
|

|
|
|
|
```jsx title="Frontend/sections/BlogArticles/Masonry4Cols.tsx"
|
|
<>
|
|
<div className="grid grid-cols-2 sm:grid-cols-4 gap-2">
|
|
<div className="space-y-2">
|
|
<img
|
|
className="w-full h-auto object-cover"
|
|
src="https://images.unsplash.com/photo-1540575861501-7cf05a4b125a?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2070&q=80"
|
|
alt="Image Description"
|
|
/>
|
|
<img
|
|
className="w-full h-auto object-cover"
|
|
src="https://images.unsplash.com/photo-1668906093328-99601a1aa584?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=986&q=80"
|
|
alt="Image Description"
|
|
/>
|
|
<img
|
|
className="w-full h-auto object-cover"
|
|
src="https://images.unsplash.com/photo-1567016526105-22da7c13161a?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1480&q=80"
|
|
alt="Image Description"
|
|
/>
|
|
</div>
|
|
<div className="space-y-2">
|
|
<img
|
|
className="w-full h-auto object-cover"
|
|
src="https://images.unsplash.com/photo-1668584054131-d5721c515211?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1064&q=80"
|
|
alt="Image Description"
|
|
/>
|
|
<img
|
|
className="w-full h-auto object-cover"
|
|
src="https://images.unsplash.com/photo-1664574654529-b60630f33fdb?ixlib=rb-4.0.3&ixid=MnwxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=987&q=80"
|
|
alt="Image Description"
|
|
/>
|
|
</div>
|
|
<div className="space-y-2">
|
|
<img
|
|
className="w-full h-auto object-cover"
|
|
src="https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2070&q=80"
|
|
alt="Image Description"
|
|
/>
|
|
<img
|
|
className="w-full h-auto object-cover"
|
|
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"
|
|
/>
|
|
<img
|
|
className="w-full h-auto object-cover"
|
|
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="space-y-2">
|
|
<img
|
|
className="w-full h-auto object-cover"
|
|
src="https://images.unsplash.com/photo-1668869713519-9bcbb0da7171?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=988&q=80"
|
|
alt="Image Description"
|
|
/>
|
|
<img
|
|
className="w-full h-auto object-cover"
|
|
src="https://images.unsplash.com/photo-1668584054035-f5ba7d426401?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=3465&q=80"
|
|
alt="Image Description"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</>
|
|
```
|