-
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.
Added CTA sections for blog details and refactor css classes
- Loading branch information
1 parent
4b2e2e0
commit bdead05
Showing
19 changed files
with
1,085 additions
and
7 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.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,88 @@ | ||
<template> | ||
<section | ||
class="relative bg-[#FDE0E2] bg-gradient-background md:mt-0 md:bg-none" | ||
> | ||
<div class="mb-[-15px] sm:mb-0 md:hidden"> | ||
<img | ||
:src="background400w" | ||
alt="background-image" | ||
class="absolute h-full w-full" | ||
loading="lazy" | ||
/> | ||
<div | ||
class="blog-container sticky flex flex-col items-center justify-center py-20" | ||
> | ||
<p | ||
class="cta-gradient-text flex text-center font-inter-medium text-base leading-[1.21rem]" | ||
> | ||
Get started today | ||
</p> | ||
<p | ||
class="mt-6 text-center font-inter-bold text-4xl leading-[2.723rem] text-black-core/[0.85]" | ||
> | ||
Let's build the next big thing! | ||
</p> | ||
<p | ||
class="mt-4 text-center font-inter-regular text-sm leading-[1.313rem] text-black-core/[0.75]" | ||
> | ||
Let's improve your business's digital strategy and implement | ||
robust mobile apps to achieve your business objectives. Schedule Your | ||
Free Consultation Now. | ||
</p> | ||
<nuxt-link :to="'/contact'"> | ||
<div | ||
class="active:scale-[0.98] mx-auto mt-10 flex w-max items-center rounded-full border border-solid border-transparent bg-gradient-to-r from-[#f2709c] to-[#ff9472] text-center font-inter-semibold text-[1.1875rem] leading-[1.1875rem] tracking-normal text-white hover:shadow-[inset_2px_1000px_1px_#fff] md:mx-0" | ||
> | ||
<span class="hoverable-text inline-block px-[1.2rem] py-4"> | ||
Get Free Consultation | ||
</span> | ||
</div> | ||
</nuxt-link> | ||
</div> | ||
</div> | ||
|
||
<div class="hidden md:block"> | ||
<img | ||
:src="desktop_background2400w" | ||
alt="background-image" | ||
class="absolute h-full w-full" | ||
loading="lazy" | ||
/> | ||
<div | ||
class="z-[1] blog-container sticky flex flex-col items-center justify-center py-20 4xl:py-32" | ||
> | ||
<p | ||
class="cta-gradient-text text-center font-inter-medium text-lg leading-[1.375rem] xl:text-xl xl:leading-[1.513rem]" | ||
> | ||
Get started today | ||
</p> | ||
<p | ||
class="mt-4 text-center font-inter-bold text-[2.813rem] leading-[3.438rem] text-black-core/[0.85] xl:text-[3.438rem] xl:leading-[4.16rem] 4xl:mt-6" | ||
> | ||
Let's build the next big thing! | ||
</p> | ||
<p | ||
class="w-[75%] mt-4 text-center font-inter-regular text-[1.063rem] leading-[1.625rem] text-black-core/[0.75] xl:text-xl xl:leading-[1.875rem] 4xl:mt-6" | ||
> | ||
Let's improve your business's digital strategy and implement | ||
robust mobile apps to achieve your business objectives. Schedule Your | ||
Free Consultation Now. | ||
</p> | ||
<nuxt-link :to="'/contact'"> | ||
<div | ||
class="mx-auto mt-10 flex w-max items-center rounded-full border border-solid border-transparent bg-gradient-to-r from-[#f2709c] to-[#ff9472] text-center font-inter-semibold text-[1.1875rem] leading-[1.1875rem] tracking-normal text-white hover:shadow-[inset_2px_1000px_1px_#fff] active:scale-[0.98] md:mx-0" | ||
> | ||
<span class="hoverable-text inline-block px-[1.2rem] py-4"> | ||
Get Free Consultation | ||
</span> | ||
</div> | ||
</nuxt-link> | ||
</div> | ||
</div> | ||
</section> | ||
</template> | ||
|
||
<script setup> | ||
import background400w from "./../../assets/images/CTA/first-cta-400w.webp"; | ||
import desktop_background2400w from "./../../assets/images/CTA/first-cta-2400w.webp"; | ||
</script> |
Oops, something went wrong.