Skip to content

Commit 6f1947c

Browse files
author
Valido
committed
Fix testimonial image path to .jpeg
1 parent f905df7 commit 6f1947c

File tree

2 files changed

+127
-0
lines changed

2 files changed

+127
-0
lines changed

index.html

Lines changed: 127 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,94 @@
302302
text-decoration: underline;
303303
}
304304

305+
/* Testimonials Section */
306+
.testimonials-section {
307+
background: white;
308+
padding: 4rem 2rem;
309+
text-align: center;
310+
}
311+
312+
.testimonials-container {
313+
max-width: 1000px;
314+
margin: 0 auto;
315+
}
316+
317+
.testimonials-section h2 {
318+
font-size: 2rem;
319+
margin-bottom: 0.5rem;
320+
color: var(--text-dark);
321+
}
322+
323+
.testimonials-section .subtitle {
324+
color: var(--text-light);
325+
font-size: 1.125rem;
326+
margin-bottom: 3rem;
327+
}
328+
329+
.testimonial-card {
330+
background: var(--bg-light);
331+
padding: 2.5rem;
332+
border-radius: 12px;
333+
text-align: left;
334+
box-shadow: 0 2px 8px rgba(0,0,0,0.05);
335+
max-width: 800px;
336+
margin: 0 auto;
337+
}
338+
339+
.testimonial-header {
340+
display: flex;
341+
align-items: center;
342+
gap: 1.5rem;
343+
margin-bottom: 1.5rem;
344+
}
345+
346+
.testimonial-avatar {
347+
width: 80px;
348+
height: 80px;
349+
border-radius: 50%;
350+
object-fit: cover;
351+
border: 3px solid white;
352+
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
353+
}
354+
355+
.testimonial-info h3 {
356+
font-size: 1.25rem;
357+
color: var(--text-dark);
358+
margin-bottom: 0.25rem;
359+
}
360+
361+
.testimonial-info p {
362+
color: var(--text-light);
363+
font-size: 0.95rem;
364+
line-height: 1.4;
365+
}
366+
367+
.testimonial-quote {
368+
font-size: 1.125rem;
369+
line-height: 1.75;
370+
color: var(--text-dark);
371+
font-style: italic;
372+
position: relative;
373+
padding-left: 1.5rem;
374+
border-left: 4px solid var(--primary);
375+
}
376+
377+
.linkedin-badge {
378+
display: inline-flex;
379+
align-items: center;
380+
gap: 0.3rem;
381+
color: #0077b5;
382+
font-size: 0.85rem;
383+
font-weight: 500;
384+
margin-top: 0.25rem;
385+
}
386+
387+
.linkedin-badge svg {
388+
width: 16px;
389+
height: 16px;
390+
fill: #0077b5;
391+
}
392+
305393
/* Cloud Storage Section */
306394
.cloud-storage-section {
307395
background: white;
@@ -689,6 +777,20 @@
689777
padding: 0 1rem;
690778
}
691779

780+
.testimonial-header {
781+
flex-direction: column;
782+
text-align: center;
783+
}
784+
785+
.testimonial-card {
786+
padding: 1.5rem;
787+
}
788+
789+
.testimonial-quote {
790+
font-size: 1rem;
791+
padding-left: 1rem;
792+
}
793+
692794
.cloud-icons {
693795
gap: 2rem;
694796
}
@@ -824,6 +926,31 @@ <h2 style="font-size: 2rem; margin-bottom: 1rem; color: var(--text-dark);">See E
824926
</div>
825927
</section>
826928

929+
<!-- Testimonials Section -->
930+
<section class="testimonials-section">
931+
<div class="testimonials-container">
932+
<h2>What Our Users Say</h2>
933+
<p class="subtitle">Real feedback from professionals using Valido</p>
934+
935+
<div class="testimonial-card">
936+
<div class="testimonial-header">
937+
<img src="pratik-shah.jpeg" alt="Pratik Shah" class="testimonial-avatar">
938+
<div class="testimonial-info">
939+
<h3>Pratik Shah</h3>
940+
<p>Founder @ Neo CFO | Fixing Broken Finance Workflows for SMEs | CA | IIM B</p>
941+
<div class="linkedin-badge">
942+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M19 3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h14m-.5 15.5v-5.3a3.26 3.26 0 0 0-3.26-3.26c-.85 0-1.84.52-2.32 1.3v-1.11h-2.79v8.37h2.79v-4.93c0-.77.62-1.4 1.39-1.4a1.4 1.4 0 0 1 1.4 1.4v4.93h2.79M6.88 8.56a1.68 1.68 0 0 0 1.68-1.68c0-.93-.75-1.69-1.68-1.69a1.69 1.69 0 0 0-1.69 1.69c0 .93.76 1.68 1.69 1.68m1.39 9.94v-8.37H5.5v8.37h2.77z"/></svg>
943+
Verified on LinkedIn
944+
</div>
945+
</div>
946+
</div>
947+
<blockquote class="testimonial-quote">
948+
"Valido's offline, no-limits approach is a refreshing break from the cloud surcharge grind—finally, automation that respects both privacy and budgets. It's like giving your documents a personal assistant who never takes a coffee break."
949+
</blockquote>
950+
</div>
951+
</div>
952+
</section>
953+
827954
<!-- ROI Comparison Section -->
828955
<section style="background: var(--bg-light); padding: 4rem 2rem; text-align: center;">
829956
<div style="max-width: 900px; margin: 0 auto;">

pratik-shah.jpeg

7.24 KB
Loading

0 commit comments

Comments
 (0)