-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ffc3476
commit 0e3ef11
Showing
4 changed files
with
144 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
137 changes: 137 additions & 0 deletions
137
nuxt-frontend/components/backend-development/SuccessStorySection.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
<template> | ||
<section class="my-16 lg:my-60 3xl:outer-container"> | ||
<!-- Mobile UI start --> | ||
<div class="lg:hidden"> | ||
<div class="header-2 text-center text-black-core/[0.87] mb-6"> | ||
Our success stories | ||
</div> | ||
<swiper | ||
:slidesPerView="1.1" | ||
:autoplay="{ | ||
delay: 3000, | ||
disableOnInteraction: false, | ||
}" | ||
:spaceBetween="0" | ||
:centeredSlides="true" | ||
:speed="1500" | ||
:loop="true" | ||
:modules="modules" | ||
> | ||
<swiper-slide | ||
v-for="client in clients" | ||
:key="client" | ||
class="text-white bg-[#121212] !scale-75 transition-all duration-200 rounded-xl text-left ease-in" | ||
> | ||
<div class="container py-6"> | ||
<img | ||
:src="imageleft" | ||
class="w-6 h-6 object-contain" | ||
loading="lazy" | ||
alt="left-quote" | ||
/> | ||
<div class="mt-6"> | ||
<div class="flex flex-col gap-6"> | ||
<p class="sub-h1-semibold" v-html="client.review"></p> | ||
<div class="flex flex-col"> | ||
<p class="sub-h3-semibold opacity-80">{{ client.name }}</p> | ||
<p class="sub-h3-regular opacity-60"> | ||
{{ client.designation }} | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</swiper-slide> | ||
</swiper> | ||
</div> | ||
<!-- Mobile UI END --> | ||
<!-- Desktop UI --> | ||
<div class="hidden lg:block container"> | ||
<div class="header-2 text-center text-black-core/[0.87] mb-[4.5rem]"> | ||
Success Stories | ||
</div> | ||
<swiper | ||
:slidesPerView="1.5" | ||
:autoplay="{ | ||
delay: 3000, | ||
disableOnInteraction: true, | ||
}" | ||
:centeredSlides="true" | ||
:speed="1500" | ||
:loop="true" | ||
:modules="modules" | ||
class="h-[35.4375rem] !overflow-visible" | ||
> | ||
<swiper-slide | ||
v-for="client in clients" | ||
:key="client" | ||
class="client text-white bg-[#121212] !scale-75 transition-all duration-200 rounded-xl text-left ease-in" | ||
><div class="container py-14 mx-14"> | ||
<img | ||
:src="imageleft" | ||
class="w-6 h-6 object-contain" | ||
loading="lazy" | ||
alt="quote-left" | ||
/> | ||
<div class="flex flex-col !justify-between mt-6 h-[25.26rem]"> | ||
<div class="sub-h1-semibold">{{ client.review }}</div> | ||
<div class="flex flex-col"> | ||
<p class="sub-h3-semibold opacity-80">{{ client.name }}</p> | ||
<p class="sub-h3-regular opacity-60"> | ||
{{ client.designation }} | ||
</p> | ||
</div> | ||
</div> | ||
</div></swiper-slide | ||
> | ||
</swiper> | ||
</div> | ||
<!-- Desktop UI END--> | ||
</section> | ||
</template> | ||
<script setup> | ||
import { Autoplay } from "swiper/modules"; | ||
import { Swiper, SwiperSlide } from "swiper/vue"; | ||
import imageleft from "@/assets/images/backend-development/quote-left.webp"; | ||
const modules = [Autoplay]; | ||
const clients = [ | ||
{ | ||
id: 1, | ||
name: "Rebecca Kimura", | ||
designation: "Founder at Togness, Australia", | ||
review: `"There was rarely ever a second explanation needed. Even if we struggled to explain technically what we wanted, they understood the first time."`, | ||
}, | ||
{ | ||
id: 2, | ||
name: "Elyass Bouchater", | ||
designation: "Product Manager at Luxe, Morocco", | ||
review: `"The Play Store is the hardest app store to get good reviews on, and we've just reached a five-star rating, which has been one of our biggest achievements, partly thanks to Canopas' work."`, | ||
}, | ||
{ | ||
id: 3, | ||
name: "Rob Eberhard", | ||
designation: "Founder at ActivScout, Canada", | ||
review: `"I was especially impressed with the skills of their backend developer and how well the project manager and she worked with one another to create a high performing iOS app."`, | ||
}, | ||
{ | ||
id: 4, | ||
name: "Lisa Weinstein", | ||
designation: "Founder at Brickandbatten, USA", | ||
review: `"There is not enough space to say all the wonderful things I would want to share about Canopas. The team is incredibly helpful, stays calm even when we had to deal with tough issues on our app and always found a way to help us fix whatever was needed or roll out any new features for our app in both the iOS and Android stores."`, | ||
}, | ||
{ | ||
id: 5, | ||
name: "Cyril Trosset", | ||
designation: "CTO at Udini, France", | ||
review: `"Multiple versions of this Android app have been successfully delivered over time. They are always very responsive on bug resolution. They are very efficient at producing complex interfaces and high quality apps."`, | ||
}, | ||
]; | ||
</script> | ||
<style lang="postcss" scoped> | ||
.swiper-slide-active { | ||
@apply !scale-100; | ||
} | ||
.client { | ||
box-shadow: 1.5rem 1.5rem #ff9472 !important; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters