diff --git a/assets/scss/components/_testimonial.scss b/assets/scss/components/_testimonial.scss new file mode 100644 index 0000000..697f2b5 --- /dev/null +++ b/assets/scss/components/_testimonial.scss @@ -0,0 +1,71 @@ +.sticky-note { + max-width: 600px; + margin: 0 auto; + height: 100%; + box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3); + position: relative; + font-family: "Noto Sans", sans-serif; + padding: 10px; + display: flex; + flex-direction: column; +} + +.sticky-description { + font-style: italic; + height: 560 px; + flex-shrink: 0; + flex-grow: 0; + display: flex; + align-items: flex-start; + position: relative; + padding: 2rem; + padding-top: 3rem; +} + +.sticky-description::before { + content: "“"; + position: absolute; + top: 0.5rem; + left: 1rem; + font-size: 4rem; + line-height: 1; + font-family: Georgia, serif; + opacity: 0.4; + pointer-events: none; +} + +.sticky-quote-end { + position: absolute; + bottom: -2rem; + right: 1rem; + font-size: 4rem; + font-family: Georgia, serif; + opacity: 0.4; + pointer-events: none; +} + +.sticky-author { + font-size: 18px; + font-family: 'Inter', sans-serif; + font-weight: bold; + text-align: center; + color: $black; +} + +.sticky-header { + background-color: #f6b60b; + padding: 5px; + border-radius: 5px 5px 0 0; +} + +.sticky-title { + font-weight: bold; + color: white; + font-size: 16px; +} + +.sticky-content { + flex-grow: 1; + padding: 10px; + overflow-y: auto; +} \ No newline at end of file diff --git a/assets/scss/style.scss b/assets/scss/style.scss index b62b01e..3cceb6f 100755 --- a/assets/scss/style.scss +++ b/assets/scss/style.scss @@ -53,6 +53,7 @@ $sub-footer-text-color: $white; @import 'components/feature'; @import 'components/social'; @import 'components/blog-carousel'; +@import 'components/testimonial'; // Pages @import 'pages/home'; diff --git a/data/testimonial.json b/data/testimonial.json new file mode 100644 index 0000000..3906db9 --- /dev/null +++ b/data/testimonial.json @@ -0,0 +1,18 @@ +[ + { + "author": "Ranjan Sakalley", + "company": "Vedantu", + "image": "images/company/vedantu_1748248129492.png", + "url": "https://www.vedantu.com/", + "designation": "Head of Engineering", + "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.

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." + }, + { + "author": "Karthik Chandrasekariah", + "company": "Zinc Learning Labs", + "image": "images/company/zinc_learning_labs.png", + "url": "https://www.zinclearninglabs.com/", + "designation": "CTO", + "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.

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." + } +] \ No newline at end of file diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html index ac1f04b..efa13ea 100644 --- a/layouts/_default/baseof.html +++ b/layouts/_default/baseof.html @@ -4,6 +4,7 @@ + {{ block "title" . }}{{ .Params.meta_title | default (printf "%s - %s" .Title .Site.Title) }}{{ end }} @@ -16,6 +17,7 @@ + {{ $css_options := dict "targetPath" "css/style.css" "enableSourceMap" (not hugo.IsProduction) }} diff --git a/layouts/index.html b/layouts/index.html index 7099c75..fd88e66 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -7,12 +7,15 @@
{{ .Content }} {{ if .Site.Params.homepage.show_contact_box }} - {{ partialCached "call.html" (dict "site" .Site "context" . "show_button" .Site.Params.homepage.show_contact_button) }} + {{ partialCached "call.html" (dict "site" .Site "context" . "show_button" + .Site.Params.homepage.show_contact_button) }} {{ end }}
{{ if .Params.intro_image }}
- {{ + {{
{{ end }} @@ -33,7 +36,7 @@ {{ if .Site.Params.homepage.show_services_button }}
- View All Services + View All Services
{{ end }} @@ -49,7 +52,8 @@
{{ if .image }} -
{{ .Title }} logo
+
{{ .Title }} logo
{{ end }}

{{ .title }}

@@ -63,26 +67,15 @@

{{ .title }}

{{end}} +
-
-
-

Testimonials

-

Ranjan Sakalley - Head of Engineering at Vedantu

- -
-

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.

- -

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."

-
-
-
-

Karthik Chandrasekariah - CTO at Zinc Learning Labs

- -
-

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. 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."

-
+
+ {{ range .Site.Data.testimonial }} +
+ {{ partial "testimonial.html" . }}
+ {{ end }}
@@ -90,7 +83,8 @@

Testimonials

-