-
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.
Merge branch 'do-unification-in-contact-page' of https://github.com/c…
- Loading branch information
Showing
6 changed files
with
146 additions
and
71 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.
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,83 @@ | ||
<template> | ||
<div class="container"> | ||
<div | ||
class="rounded-xl border bg-[#F8F8F8] shadow-[0px_2px_35px_rgba(0,0,0,0.12)] mt-16 lg:my-28 px-4 py-8 lg:py-14 mb-16 3xl:mb-[23rem]" | ||
> | ||
<div class="flex flex-row items-center lg:items-end gap-1"> | ||
<img | ||
:src="badge" | ||
class="w-[56px] lg:w-[108px] h-[51px] lg:h-[99px] ml-[-5px] lg:ml-0 lg:mt-[-35px]" | ||
alt="badge-image" | ||
/> | ||
<p | ||
class="sub-h3-semibold lg:sub-h1-semibold w-full lg:text-center lg:w-[82%] lg:mb-[-0.5rem] lg:ml-6" | ||
> | ||
In two weeks — at any time, if you feel you won't get the results you | ||
want, you don't have to pay a penny. | ||
</p> | ||
</div> | ||
<div | ||
class="flex flex-col sub-h3-medium text-black-core/[0.60] lg:px-14 mt-6" | ||
> | ||
<div v-for="benefit in benefits" class="mt-4" :key="benefit"> | ||
<span v-html="benefit.title"></span> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</template> | ||
<script> | ||
import badge from "@/assets/images/guaranty-badge.webp"; | ||
export default { | ||
data() { | ||
return { | ||
badge, | ||
benefits: [ | ||
{ | ||
title: ` We don't want you to decide yes or no today... We want you to make a | ||
fully informed decision, that is all. | ||
<span class="sub-h3-semibold text-black-core/[0.87]" | ||
>The only way you can make a fully informed decision is on the | ||
inside, not the outside.</span | ||
> | ||
So you get on the ride with us and see if everything we say on this | ||
website is true and valuable to you.`, | ||
}, | ||
{ | ||
title: `Then, if it is, that's when you decide to keep it. If not, no hard | ||
feelings. By working with us for two weeks, you will be able to make | ||
an informed decision that this isn't for you. But you can't make that | ||
decision right now for the same reason you don't buy a car without a | ||
test drive.`, | ||
}, | ||
{ | ||
title: `And remember, | ||
<span class="sub-h3-semibold text-black-core/[0.87]" | ||
>whether it's 79 minutes or 79 hours from now, if you ain't happy, | ||
we ain't happy.</span | ||
> | ||
For any reason whatsoever, if you want your money back you can get it | ||
because we only want to keep your money if you're happy.`, | ||
}, | ||
{ | ||
title: `All you have to do is | ||
<span class="sub-h3-semibold text-black-core/[0.87]" | ||
>just tell us "This isn't for me" and you got it, No Questions | ||
Asked.</span | ||
> | ||
And our response times to any support request average 59min over a | ||
daytime period.`, | ||
}, | ||
{ | ||
title: `You can only make such a guarantee when you're confident that what you | ||
have is the real deal and we are damn confident that when you sign up | ||
with us you're getting exactly what you need to | ||
<span class="sub-h3-semibold text-black-core/[0.87]" | ||
>GROW YOUR BUSINESS.</span | ||
>`, | ||
}, | ||
], | ||
}; | ||
}, | ||
}; | ||
</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
Oops, something went wrong.