Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,45 @@
color: #0b1528;
}

.procure-steps-cta {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
width: 100%;
margin-top: 32px;
text-align: center;
}

.procure-steps-cta__button {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 48px;
padding: 12px 28px;
border-radius: 6px;
background: #2d58a7;
color: #ffffff;
font-weight: 600;
font-size: 16px;
line-height: 24px;
letter-spacing: 0.5px;
text-decoration: none;
transition: background-color 0.2s ease, color 0.2s ease;
}

.procure-steps-cta__button:hover {
background: #18b5d9;
color: #ffffff;
}

@media (min-width: 1024px) {
.procure-steps-cta {
margin-top: 48px;
gap: 24px;
}
}

.procure-step-connector {
display: none;
width: 56px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,11 @@ <h3 class="procure-step-title">
}
}
</div>

<div class="procure-steps-cta">
<a [href]="url()" class="procure-steps-cta__button">
{{ 'LANDINGPAGE.customers.procureSteps._ctaButton' | translate }}
</a>
</div>
</div>
</section>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Component } from "@angular/core";
import { Component, input } from "@angular/core";
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
import { faBagShopping, faHandshake, faMagnifyingGlass, faUser } from '@fortawesome/pro-solid-svg-icons';
import { TranslateModule } from '@ngx-translate/core';
Expand All @@ -17,6 +17,8 @@ type ProcureStep = {
styleUrl: "./landing-customers-procure-steps.component.css"
})
export class LandingCustomersProcureStepsComponent {
url = input.required<string>();

steps: ProcureStep[] = [
{ key: 'step1', icon: faUser },
{ key: 'step2', icon: faMagnifyingGlass },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<app-landingpage-customers-why-join></app-landingpage-customers-why-join>
<app-landingpage-customers-right-for-you></app-landingpage-customers-right-for-you>
<app-landing-customers-buy-options></app-landing-customers-buy-options>
<app-landing-customers-procure-steps></app-landing-customers-procure-steps>
<app-landing-customers-procure-steps [url]="ONBOARDING_CUSTOMERS_LINK"></app-landing-customers-procure-steps>
<app-landing-customers-faqs></app-landing-customers-faqs>
<app-landing-customers-finalCta [url]="ONBOARDING_CUSTOMERS_LINK"></app-landing-customers-finalCta>
3 changes: 2 additions & 1 deletion src/assets/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,8 @@
"step4": {
"_title": "Engage providers and complete procurement"
}
}
},
"_ctaButton": "Start your onboarding journey"
},
"buyOptions": {
"_title": "Choose how you buy",
Expand Down
3 changes: 2 additions & 1 deletion src/assets/i18n/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,8 @@
"step4": {
"_title": "Engage providers and complete procurement"
}
}
},
"_ctaButton": "Start your onboarding journey"
},
"buyOptions": {
"_title": "Choose how you buy",
Expand Down
Loading