Skip to content

Commit c773adc

Browse files
committed
add quotes in testimonial
1 parent d8cf837 commit c773adc

File tree

3 files changed

+35
-4
lines changed

3 files changed

+35
-4
lines changed

assets/scss/components/_testimonial.scss

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,38 @@
1717
flex-grow: 0;
1818
display: flex;
1919
align-items: flex-start;
20+
position: relative;
21+
padding: 2rem;
22+
padding-top: 3rem;
23+
}
24+
25+
.sticky-description::before {
26+
content: "";
27+
position: absolute;
28+
top: 0.5rem;
29+
left: 1rem;
30+
font-size: 4rem;
31+
line-height: 1;
32+
/* soft gray - feel free to change */
33+
font-family: Georgia, serif;
34+
/* looks elegant */
35+
opacity: 0.4;
36+
pointer-events: none;
37+
}
38+
39+
.sticky-description::after {
40+
content: "";
41+
position: absolute;
42+
bottom: 1rem;
43+
right: 1rem;
44+
font-size: 4rem;
45+
font-family: Georgia, serif;
46+
opacity: 0.4;
47+
pointer-events: none;
2048
}
2149

2250
.sticky-author {
51+
font-size: 18px;
2352
font-family: 'Inter', sans-serif;
2453
font-weight: bold;
2554
text-align: center;
@@ -42,4 +71,4 @@
4271
flex-grow: 1;
4372
padding: 10px;
4473
overflow-y: auto;
45-
}
74+
}

data/testimonial.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
"image": "images/company/vedantu_1748248129492.png",
66
"url": "https://www.vedantu.com/",
77
"designation": "Head of Engineering",
8-
"description": "<b>\"</b> Working with the Infraspec team has been a very satisfying experience! They were completely dedicated to our mission and our product. Their commitment and dedication to our efforts felt like they are a part of our core team rather than being external consultants. <br><br> They are a high quality technical team. They were able to take on and deliver projects with both familiar and unfamiliar technologies. Their commitment to writing clean code and good automated tests helped our team level up our own coding skills.</b>\"</b>"
8+
"description": "Working with the Infraspec team has been a very satisfying experience! They were completely dedicated to our mission and our product. Their commitment and dedication to our efforts felt like they are a part of our core team rather than being external consultants. <br><br> They are a high quality technical team. They were able to take on and deliver projects with both familiar and unfamiliar technologies. Their commitment to writing clean code and good automated tests helped our team level up our own coding skills."
99
},
1010
{
1111
"author": "Karthik Chandrasekariah",
1212
"company": "Zinc Learning Labs",
1313
"image": "images/company/zinc_learning_labs.png",
1414
"url": "https://www.zinclearninglabs.com/",
1515
"designation": "CTO",
16-
"description": "<b>\"</b> Infraspec helped us improve operational efficiency by completely owning and building important products that our operations team needed. They owned multiple initiatives in the organization including continuous delivery audit for teams, helped in setting up processes for change management, securing & improving resilience of public APIs.<br><br>They go the extra mile to understand the requirements at depth and utilize that knowledge to make appropriate technology choices. They constantly challenged the status quo and pushed for technicalexcellence. They were always aligned with our culture and values.</b>\"</b>"
16+
"description": "Infraspec helped us improve operational efficiency by completely owning and building important products that our operations team needed. They owned multiple initiatives in the organization including continuous delivery audit for teams, helped in setting up processes for change management, securing & improving resilience of public APIs.<br><br>They go the extra mile to understand the requirements at depth and utilize that knowledge to make appropriate technology choices. They constantly challenged the status quo and pushed for technical excellence. They were always aligned with our culture and values."
1717
}
1818
]

layouts/partials/testimonial.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<div class="sticky-note">
22
<div class="sticky-content">
3-
<div class="sticky-description"> {{ .description | safeHTML }} </div>
3+
<div class="sticky-description">
4+
{{ .description | safeHTML }}
5+
</div>
46
<hr>
57
<div class="sticky-author">
68
<br> {{ .author }} - {{ .designation }} at {{ .company}}

0 commit comments

Comments
 (0)