corrections updated

This commit is contained in:
Selvi 2026-07-23 20:27:18 +05:30
parent 46e61651cc
commit 00b4f0d497
31 changed files with 506 additions and 949 deletions

View File

@ -895,7 +895,7 @@ a:hover {
/* ── TESTIMONIALS ──────────────────────────────────────────── */ /* ── TESTIMONIALS ──────────────────────────────────────────── */
#v2-testimonials { #v2-testimonials {
background: var(--v2-cream); background: var(--v2-white);
padding: 100px 0; padding: 100px 0;
} }
@ -1668,10 +1668,20 @@ main,
box-shadow: 0 8px 25px rgba(201, 151, 58, 0.15); box-shadow: 0 8px 25px rgba(201, 151, 58, 0.15);
} }
.v2-service-card-new .v2-feature-icon {
width: 60px;
height: 60px;
}
.v2-service-card-new .v2-feature-icon svg {
width: 42px;
height: 42px;
}
.v2-service-title-top { .v2-service-title-top {
font-family: var(--v2-font-body); font-family: var(--v2-font-body);
font-weight: 800; font-weight: 800;
font-size: 0.7rem; font-size: 0.85rem;
color: var(--v2-text); color: var(--v2-text);
text-align: center; text-align: center;
margin-bottom: 12px; margin-bottom: 12px;
@ -1881,7 +1891,7 @@ main,
/* ── TESTIMONIALS UPDATE ──────────────────────────────────────────── */ /* ── TESTIMONIALS UPDATE ──────────────────────────────────────────── */
#v2-testimonials { #v2-testimonials {
padding: 80px 0; padding: 80px 0;
background-color: #fdf6e3; background-color: #fff;
} }
.v2-testimonials-inner { .v2-testimonials-inner {
@ -3214,7 +3224,6 @@ justify-content:center;
font-size: 0.85rem !important; font-size: 0.85rem !important;
} }
} }
}
/* ── 2. CTA Section ── */ /* ── 2. CTA Section ── */
.svc-cta-section { .svc-cta-section {

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 39 KiB

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 49 KiB

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -266,12 +266,12 @@
// Dynamic portfolio data // Dynamic portfolio data
const portfolioData = [ const portfolioData = [
{ category: 'weddings', img: '/theme_aakriti_v2/static/src/img/wedding.png', title: 'Romantic Garden Wedding', location: 'Bangalore, India' }, { category: 'weddings', img: '/theme_aakriti_v2/static/src/img/image.jpg', title: 'Lorem ipsum', location: 'Lorem ipsum' },
{ category: 'corporate', img: '/theme_aakriti_v2/static/src/img/corporate.png', title: 'Annual Corporate Summit', location: 'Hyderabad, India' }, { category: 'corporate', img: '/theme_aakriti_v2/static/src/img/image.jpg', title: 'Lorem ipsum', location: 'Lorem ipsum' },
{ category: 'birthday', img: '/theme_aakriti_v2/static/src/img/birthday.png', title: 'Milestone Birthday Bash', location: 'Bangalore, India' }, { category: 'birthday', img: '/theme_aakriti_v2/static/src/img/image.jpg', title: 'Lorem ipsum', location: 'Lorem ipsum' },
{ category: 'cultural', img: '/theme_aakriti_v2/static/src/img/cultural.png', title: 'Royal Cultural Night', location: 'Mysore, India' }, { category: 'cultural', img: '/theme_aakriti_v2/static/src/img/image.jpg', title: 'Lorem ipsum', location: 'Lorem ipsum' },
{ category: 'private', img: '/theme_aakriti_v2/static/src/img/gallery1.webp', title: 'Private Celebration', location: 'Goa, India' }, { category: 'private', img: '/theme_aakriti_v2/static/src/img/image.jpg', title: 'Lorem ipsum', location: 'Lorem ipsum' },
{ category: 'weddings', img: '/theme_aakriti_v2/static/src/img/about.webp', title: 'Classic Wedding', location: 'Bangalore, India' } { category: 'weddings', img: '/theme_aakriti_v2/static/src/img/image.jpg', title: 'Lorem ipsum', location: 'Lorem ipsum' }
]; ];
// Function to render items // Function to render items
@ -285,8 +285,7 @@
<div class="v2-portfolio-item-inner"> <div class="v2-portfolio-item-inner">
<img src="${item.img}" alt="${item.title}"/> <img src="${item.img}" alt="${item.title}"/>
<div class="v2-portfolio-info"> <div class="v2-portfolio-info">
<h3>${item.title}</h3> <p style="text-align: center;">Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
<p><svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><path d="M21 10c0 7-9 12-9 12s-9-5-9-12a9 9 0 0 1 18 0z"></path><circle cx="12" cy="10" r="3"></circle></svg> ${item.location}</p>
</div> </div>
</div> </div>
</div> </div>

File diff suppressed because it is too large Load Diff

6
package-lock.json generated Normal file
View File

@ -0,0 +1,6 @@
{
"name": "odoo-aakriti-events-rental",
"lockfileVersion": 3,
"requires": true,
"packages": {}
}