-
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
99450ea
commit 57d8ef2
Showing
4 changed files
with
57 additions
and
1 deletion.
There are no files selected for viewing
Binary file not shown.
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
52 changes: 52 additions & 0 deletions
52
nuxt-frontend/components/flutter-app-development/CtaSection2.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,52 @@ | ||
<template> | ||
<div class="bg-[#F8F8F8] mt-14 text-center lg:text-left 3xl:outer-container"> | ||
<div | ||
class="container py-14 lg:py-[4.12rem] flex flex-col gap-4 lg:flex-row lg:gap-[3.12rem]" | ||
> | ||
<div | ||
class="xs:mx-4 lg:!mx-0 flex flex-col gap-4 lg:gap-6 flex-[52.69%] justify-evenly" | ||
> | ||
<p class="header-1 xl:header-2 text-black-core/[0.87]"> | ||
Crafting tomorrow's technology starts with one click. | ||
<span class="border-text"> Will you take the leap? </span> | ||
</p> | ||
<span class="text-black-core/[0.6] sub-h1-regular" | ||
>Discover how we can elevate your project.</span | ||
> | ||
<nuxt-link | ||
class="gradient-btn primary-btn hidden lg:flex mx-0" | ||
to="/contact" | ||
@click.native="$mixpanel.track('tap_flutter_development_cta')" | ||
> | ||
<span class="sub-h3-semibold border-none">Drop Us a Line </span> | ||
<Icon name="fa6-solid:arrow-right" class="fa ml-3" /> | ||
</nuxt-link> | ||
</div> | ||
<div class="mx-auto lg:mx-0 flex-[40%] lg:flex justify-end"> | ||
<img | ||
:src="leap" | ||
loading="lazy" | ||
alt="Drop-us-a-line-image" | ||
class="h-full w-[20.42463rem] lg:w-[26.25rem] object-contain" | ||
/> | ||
<nuxt-link | ||
class="gradient-btn primary-btn lg:hidden" | ||
to="/contact" | ||
@click.native="$mixpanel.track('tap_flutter_development_cta')" | ||
> | ||
<span class="sub-h3-semibold border-none">Drop Us a Line </span> | ||
<Icon name="fa6-solid:arrow-right" class="fa ml-3" /> | ||
</nuxt-link> | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script setup> | ||
import leap from "@/assets/images/flutter-app-development/leap.webp"; | ||
</script> | ||
<style lang="postcss" scoped> | ||
.border-text { | ||
-webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.87); | ||
} | ||
</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