Skip to content

Commit

Permalink
added images
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-ashish-k committed Nov 23, 2023
1 parent 99450ea commit 7952e03
Show file tree
Hide file tree
Showing 6 changed files with 67 additions and 1 deletion.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
class="bg-[#121212] ease absolute top-1/2 left-1/2 right-1/2 rounded-xl transition-all duration-700 opacity-0 overflow-hidden w-0 h-0 hover:opacity-100 group-hover:h-full group-hover:w-full group-hover:top-0 group-hover:left-0 group-hover:right-0"
>
<div
class="absolute w-80 -top-72 left-1/2 text-center -translate-x-1/2 -translate-y-1/2 transition-all duration-700 transform group-hover:top-1/2"
class="absolute w-72 xl:w-80 -top-72 left-1/2 text-center -translate-x-1/2 -translate-y-1/2 transition-all duration-700 transform group-hover:top-1/2"
>
<span
v-html="blog.hovertitle"
Expand Down
62 changes: 62 additions & 0 deletions nuxt-frontend/components/flutter-app-development/CtaSection2.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
<template>
<div
class="bg-[#F8F8F8] mt-14 text-center lg:text-left lg:h-[552px] 3xl:outer-container"
>
<div
class="container py-14 lg:py-20 xl:py-12 2xl:py-0 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%] my-auto"
>
<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"
:srcset="`${leap400} 400w, ${leap800} 800w`"
loading="lazy"
alt="Drop-us-a-line-image"
class="h-full w-[20.42463rem] lg:w-full 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";
import leap400 from "@/assets/images/flutter-app-development/leap400.webp";
import leap800 from "@/assets/images/flutter-app-development/leap800.webp";
</script>
<style lang="postcss" scoped>
.border-text {
-webkit-text-stroke: 1px rgba(0, 0, 0, 0.87);
}
@media (min-width: 992px) {
.border-text {
-webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.87);
}
}
</style>
4 changes: 4 additions & 0 deletions nuxt-frontend/pages/flutter-app-development.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<CtaSection />
<SuccessStory />
<BlogSection />
<CtaSection2 />
<NewFooter ref="flutterFooter" />
</div>
</template>
Expand All @@ -24,6 +25,9 @@ const SuccessStory = defineAsyncComponent(
const BlogSection = defineAsyncComponent(
() => import("@/components/flutter-app-development/BlogSection.vue"),
);
const CtaSection2 = defineAsyncComponent(
() => import("@/components/flutter-app-development/CtaSection2.vue"),
);
const NewFooter = defineAsyncComponent(
() => import("@/components/partials/NewFooter.vue"),
);
Expand Down

0 comments on commit 7952e03

Please sign in to comment.