-
Notifications
You must be signed in to change notification settings - Fork 96
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
Nicola Lanzilotto
committed
Jan 7, 2024
1 parent
2771c25
commit 40dff79
Showing
9 changed files
with
431 additions
and
3 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
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
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
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
78 changes: 78 additions & 0 deletions
78
src/app/static-pages/automation-static/automation-static.component.html
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,78 @@ | ||
|
||
<p style="z-index: 1050;position: relative; padding-left:30px" class="navbar-brand" | ||
[ngStyle]="{'margin-top':isChromeVerGreaterThan100 === true ? '-64px' : '6px' }"> | ||
<!-- {{ 'CannedResponses.CannedResponses' | translate }} --> | ||
Last Automations | ||
</p> | ||
|
||
<div class="main-content" style="padding-top:0px"> | ||
<div class="container-fluid"> | ||
|
||
<div class="row col-container"> | ||
|
||
<div class="col-md-5 left-side-in-col-container"> | ||
|
||
<div class="left-div-padding"> | ||
<div class="row"> | ||
<div class="col-sm-12"> | ||
<h2 class="demopage-title"> | ||
|
||
<!-- {{ "AvailableWithTheProPlan" | translate }} --> | ||
{{ "AvailableFromThePlan" | translate: tparams }} | ||
|
||
</h2> | ||
</div> | ||
</div> | ||
|
||
<div class="row"> | ||
<div class="col-sm-12"> | ||
<h3 class="demopage-subtitle"> | ||
|
||
{{ "HavingCannedResponsesCanPutYouGreatAdvantage" | translate }} | ||
<!-- <br> | ||
{{ "CRMRecordsCustomerContactInformation" | translate }}. --> | ||
</h3> | ||
</div> | ||
</div> | ||
|
||
<div class="row"> | ||
<div class="col-sm-12"> | ||
<div style="text-align: center;"> | ||
<!-- (click)="goToPricing()" --> | ||
<button type="button" class="btn outline-btn-analytics btn-lg" style="padding:11px 22px" | ||
(click)="goToPricing()"> | ||
|
||
<span> {{ 'UpgradeNow' | translate }} </span> | ||
|
||
</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="col-md-7 right-side-in-col-container"> | ||
<div style="max-width:780px;margin:auto"> | ||
<div class="card" style="box-shadow: 0 14px 30px 0 rgba(60,72,91,0.22); border-radius:10px;"> | ||
<div class="card-content"> | ||
<div class="row"> | ||
<div class="col-md-12"> | ||
<img src="assets/img/automations-static.jpeg"> | ||
<!-- <ng-image-slider #nav | ||
[images]="imageObject" | ||
[imageSize]="{width: 766, height: 410}" | ||
[infinite]="true" | ||
[manageImageRatio]="true" | ||
[showArrow]="false" | ||
[autoSlide]="1"> | ||
</ng-image-slider> --> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
92 changes: 92 additions & 0 deletions
92
src/app/static-pages/automation-static/automation-static.component.scss
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,92 @@ | ||
|
||
// @import './src/assets/css/slick/slick'; | ||
// @import './src/assets/css/slick/slick-theme'; | ||
|
||
|
||
.outline-btn-analytics { | ||
background-color: transparent; | ||
color: #1e88e5; | ||
border-radius: 40px; | ||
padding: 18px 36px; | ||
line-height: 1.33em; | ||
border: 2px solid #1e88e5; | ||
font-weight: 500; | ||
font-size: 14px; | ||
} | ||
|
||
.outline-btn-analytics:hover { | ||
color: #fff; | ||
background-color: #1e88e5; | ||
} | ||
|
||
|
||
|
||
.demopage-title { | ||
margin-top:10px; | ||
margin-bottom:5px; | ||
font-family:'Poppins','Roboto', 'Arial', sans-serif; | ||
text-align:center; | ||
color: #1e88e5; | ||
line-height: 41px; | ||
font-weight: 400; | ||
} | ||
|
||
.demopage-subtitle { | ||
margin-top: 5px !important; | ||
font-family: 'Poppins','Roboto', 'Arial', sans-serif; | ||
text-align:center; | ||
} | ||
|
||
// to 992 | ||
@media (max-width: 992px) { | ||
.left-div-padding { | ||
padding-top:10px; | ||
} | ||
|
||
} | ||
|
||
@media (min-width:992px) { | ||
.col-container { | ||
display: flex; | ||
// display: table; | ||
} | ||
|
||
.left-side-in-col-container { | ||
float: none; | ||
// display: table-cell; | ||
display: -ms-flexbox; | ||
display: -webkit-flex; | ||
display: flex; | ||
-ms-flex-align: center; | ||
-webkit-align-items: center; | ||
-webkit-box-align: center; | ||
align-items: center; | ||
} | ||
|
||
.right-side-in-col-container { | ||
float: none; | ||
display: table-cell; | ||
} | ||
} | ||
|
||
|
||
@media (min-width:992px) and (max-width: 1340px){ | ||
|
||
.left-side-in-col-container { | ||
width: 35% !important; | ||
} | ||
|
||
.right-side-in-col-container { | ||
width: 65% !important; | ||
} | ||
|
||
.demopage-title { | ||
font-size: 3rem !important; | ||
} | ||
|
||
.demopage-subtitle { | ||
font-size: 1.5em !important; | ||
} | ||
|
||
|
||
} |
23 changes: 23 additions & 0 deletions
23
src/app/static-pages/automation-static/automation-static.component.spec.ts
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,23 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
|
||
import { AutomationStaticComponent } from './automation-static.component'; | ||
|
||
describe('AutomationStaticComponent', () => { | ||
let component: AutomationStaticComponent; | ||
let fixture: ComponentFixture<AutomationStaticComponent>; | ||
|
||
beforeEach(async () => { | ||
await TestBed.configureTestingModule({ | ||
declarations: [ AutomationStaticComponent ] | ||
}) | ||
.compileComponents(); | ||
|
||
fixture = TestBed.createComponent(AutomationStaticComponent); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
Oops, something went wrong.