Update About section images and enhance styling: Replaced image URLs with new assets, added fixed dimensions for grid images, and implemented responsive height adjustments for better layout across various screen sizes.

This commit is contained in:
albivkt
2025-07-12 23:42:58 +03:00
parent 37a6373714
commit a4326cd16d
5 changed files with 56 additions and 9 deletions

BIN
public/images/1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 164 KiB

BIN
public/images/12.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

BIN
public/images/123.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

BIN
public/images/1234.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

View File

@ -4,10 +4,10 @@ const about = {
title: "О НАС", title: "О НАС",
paragraph1: "Наша компания занимается производством продукции из драгоценных металлов.", paragraph1: "Наша компания занимается производством продукции из драгоценных металлов.",
imageUrls: [ imageUrls: [
"/images/hero.webp", "/images/1.jpg",
"/images/hero.webp", "/images/12.jpg",
"/images/hero.webp", "/images/123.jpg",
"/images/hero.webp" "/images/1234.jpg"
] ]
}; };
--- ---
@ -56,11 +56,11 @@ const about = {
<div class="lg:w-1/2 grid grid-cols-2 gap-3 xs:gap-4 sm:gap-6"> <div class="lg:w-1/2 grid grid-cols-2 gap-3 xs:gap-4 sm:gap-6">
{ {
about.imageUrls.map((imageUrl, index) => ( about.imageUrls.map((imageUrl, index) => (
<div class="group relative overflow-hidden rounded-xl xs:rounded-2xl shadow-2xl hover:shadow-yellow-500/20 transition-all duration-500 transform hover:scale-105"> <div class="group relative overflow-hidden rounded-xl xs:rounded-2xl shadow-2xl hover:shadow-yellow-500/20 transition-all duration-500 transform hover:scale-105 h-32 xs:h-36 sm:h-40 md:h-44 lg:h-48 xl:h-52">
<img <img
src={imageUrl} src={imageUrl}
alt={`О нас изображение ${index + 1}`} alt={`О нас изображение ${index + 1}`}
class="w-full h-full object-cover transition-transform duration-700 group-hover:scale-110" class="w-full h-full object-cover object-center transition-transform duration-700 group-hover:scale-110"
/> />
<div class="absolute inset-0 bg-gradient-to-t from-black/50 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-500"></div> <div class="absolute inset-0 bg-gradient-to-t from-black/50 to-transparent opacity-0 group-hover:opacity-100 transition-opacity duration-500"></div>
</div> </div>
@ -75,8 +75,55 @@ const about = {
line-height: 1.8; line-height: 1.8;
} }
img { /* Фиксированные размеры для изображений в сетке */
max-width: 100%; .grid img {
max-height: 100%; aspect-ratio: 4/3;
object-fit: cover;
object-position: center;
width: 100%;
height: 100%;
}
/* Дополнительные адаптивные стили для изображений */
@media (max-width: 320px) {
.grid > div {
height: 7rem !important;
}
}
@media (min-width: 321px) and (max-width: 479px) {
.grid > div {
height: 8rem !important;
}
}
@media (min-width: 480px) and (max-width: 639px) {
.grid > div {
height: 9rem !important;
}
}
@media (min-width: 640px) and (max-width: 767px) {
.grid > div {
height: 10rem !important;
}
}
@media (min-width: 768px) and (max-width: 1023px) {
.grid > div {
height: 11rem !important;
}
}
@media (min-width: 1024px) and (max-width: 1279px) {
.grid > div {
height: 12rem !important;
}
}
@media (min-width: 1280px) {
.grid > div {
height: 13rem !important;
}
} }
</style> </style>