Adjust navigation flow, clean up JSX markup and defaults in App.jsx

This commit is contained in:
Vishva
2026-07-30 10:23:14 +05:30
parent 9a00c2805b
commit 80ae755825
2 changed files with 2452 additions and 2510 deletions
+2451 -2469
View File
File diff suppressed because it is too large Load Diff
+1 -41
View File
@@ -52,47 +52,7 @@ export default function FeaturedGallery({ gallery }) {
setActiveIdx={setActiveGalleryIndex} setActiveIdx={setActiveGalleryIndex}
/> />
{/* Bottom CTA Button matching design screenshot */}
<div style={{ display: 'flex', justifyContent: 'center', marginTop: '3rem' }}>
<button
type="button"
onClick={() => {
const footer = document.getElementById('contactus');
if (footer) {
footer.scrollIntoView({ behavior: 'smooth' });
}
}}
style={{
display: 'inline-flex',
alignItems: 'center',
gap: '0.6rem',
background: 'rgba(255, 255, 255, 0.05)',
border: '1.5px solid rgba(255, 255, 255, 0.35)',
boxShadow: '0 8px 25px rgba(0, 0, 0, 0.3)',
borderRadius: '50px',
color: '#ffffff',
padding: '0.75rem 2rem',
fontSize: '0.92rem',
fontWeight: 600,
cursor: 'pointer',
transition: 'all 0.25s ease',
backdropFilter: 'blur(10px)'
}}
onMouseEnter={(e) => {
e.currentTarget.style.background = 'rgba(255, 255, 255, 0.12)';
e.currentTarget.style.borderColor = 'rgba(255, 255, 255, 0.6)';
e.currentTarget.style.transform = 'translateY(-2px)';
}}
onMouseLeave={(e) => {
e.currentTarget.style.background = 'rgba(255, 255, 255, 0.05)';
e.currentTarget.style.borderColor = 'rgba(255, 255, 255, 0.35)';
e.currentTarget.style.transform = 'translateY(0)';
}}
>
<span>Explore Success Stories</span>
<ArrowRight size={16} />
</button>
</div>
</div> </div>
</section> </section>
); );