-
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
342e40e
commit 7fb7c18
Showing
7 changed files
with
111 additions
and
7 deletions.
There are no files selected for viewing
Binary file added
BIN
+28 KB
nuxt-frontend/assets/images/flutter-app-development/cta/background-1200w.webp
Binary file not shown.
Binary file added
BIN
+64.6 KB
nuxt-frontend/assets/images/flutter-app-development/cta/background-2400w.webp
Binary file not shown.
Binary file added
BIN
+9.04 KB
nuxt-frontend/assets/images/flutter-app-development/cta/background-400w.webp
Binary file not shown.
Binary file added
BIN
+19.3 KB
nuxt-frontend/assets/images/flutter-app-development/cta/background-800w.webp
Binary file not shown.
Binary file not shown.
100 changes: 100 additions & 0 deletions
100
nuxt-frontend/components/flutter-app-development/CtaSection.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,100 @@ | ||
<template> | ||
<section> | ||
<!-- Mobile UI --> | ||
<div class="relative lg:hidden h-[40vh]"> | ||
<img | ||
:src="background400" | ||
:srcset="`${background400} 400w, ${background800} 800w`" | ||
class="h-full w-full object-cover opacity-20" | ||
alt="flutter-cta" | ||
loading="lazy" | ||
/> | ||
<div class="absolute top-0 w-full h-full"> | ||
<div class="flex flex-col container gap-1 text-center mt-16"> | ||
<div class="flex flex-col gap-4"> | ||
<div> | ||
<p class="header-1">Let's code your success story together!</p> | ||
</div> | ||
<div> | ||
<span class="sub-h1-regular"> | ||
Join hands with us for your next app endeavour. | ||
</span> | ||
</div> | ||
</div> | ||
<div> | ||
<nuxt-link | ||
to="/contact" | ||
@click.native="$mixpanel.track('tap_flutter_development_cta')" | ||
> | ||
<button class="gradient-btn primary-btn"> | ||
<span class="sub-h3-semibold border-none" | ||
>Get Free Consultation</span | ||
> | ||
</button> | ||
</nuxt-link> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- Desktop UI --> | ||
<div class="hidden lg:block relative h-[65vh] 2xl:h-[670px]"> | ||
<img | ||
:src="background1200" | ||
:srcset="`${background1200} 1200w, ${background2400} 2400w`" | ||
class="h-full w-full object-cover opacity-20" | ||
alt="flutter-cta" | ||
loading="lazy" | ||
/> | ||
<div class="absolute top-0 w-full h-full"> | ||
<div class="flex flex-row container gap-[5.25rem] mt-16"> | ||
<img | ||
:src="hex" | ||
class="flex-1 w-full h-full object-cover" | ||
alt="flutter-hex-image" | ||
loading="lazy" | ||
/> | ||
<div class="flex flex-col gap-6 text-left flex-1 my-auto"> | ||
<div> | ||
<p class="header-1">Let's code your success story together!</p> | ||
</div> | ||
<div> | ||
<span class="sub-h1-regular"> | ||
Join hands with us for your next app endeavour. | ||
</span> | ||
</div> | ||
<nuxt-link | ||
to="/contact" | ||
@click.native="$mixpanel.track('tap_flutter_development_cta')" | ||
> | ||
<button class="gradient-btn primary-btn mx-0"> | ||
<span class="sub-h3-semibold border-none" | ||
>Get Free Consultation</span | ||
> | ||
</button> | ||
</nuxt-link> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
</template> | ||
|
||
<script type="module"> | ||
import background400 from "@/assets/images/flutter-app-development/cta/background-400w.webp"; | ||
import background800 from "@/assets/images/flutter-app-development/cta/background-800w.webp"; | ||
import background1200 from "@/assets/images/flutter-app-development/cta/background-1200w.webp"; | ||
import background2400 from "@/assets/images/flutter-app-development/cta/background-2400w.webp"; | ||
import hex from "@/assets/images/flutter-app-development/cta/hex-img.webp"; | ||
export default { | ||
data() { | ||
return { | ||
background400, | ||
background800, | ||
background1200, | ||
background2400, | ||
hex, | ||
}; | ||
}, | ||
inject: ["mixpanel"], | ||
}; | ||
</script> |
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