Skip to content

Commit

Permalink
Add trusted by slide
Browse files Browse the repository at this point in the history
  • Loading branch information
palkan committed Nov 6, 2023
1 parent e9203d8 commit a03757b
Show file tree
Hide file tree
Showing 11 changed files with 66 additions and 2 deletions.
Binary file added src/images/logos/callbell.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/logos/circle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/logos/live-voice.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/logos/poll-everywhere.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/logos/sera.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/logos/vito.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/logos/welcome.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 3 additions & 2 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
<div class="page">
{{> header}}
<main class="content">
{{> slides/main-slide}} {{> slides/about-slide}} {{>
slides/plans-slide}} {{> slides/resources-slide}}
{{> slides/main-slide}} {{> slides/about-slide}}
{{> slides/trusted-slide}} {{> slides/plans-slide}}
{{> slides/resources-slide}}
</main>
{{> footer }}
</div>
Expand Down
1 change: 1 addition & 0 deletions src/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
@import './modules/blocks/video-tip.scss';
@import './modules/blocks/chart.scss';
@import './modules/blocks/illustration.scss';
@import './modules/blocks/trusted-slide.scss';
@import './modules/blocks/plans-slide.scss';
@import './modules/blocks/plan-card.scss';
@import './modules/blocks/resources-slide.scss';
Expand Down
20 changes: 20 additions & 0 deletions src/modules/blocks/trusted-slide.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
$className: 'trusted-slide';

.#{$className} {
background-color: $backgroundSecondaryColor;

&__list {
width: 100%;
max-width: 1920px;
display: grid;
grid-auto-flow: column;
gap: 48px;
margin-bottom: 80px;
overflow-x: auto;
}

&__logo {
height: 80px;
width: auto;
}
}
42 changes: 42 additions & 0 deletions src/partials/slides/trusted-slide.hbs
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<section class='slide trusted-slide'>
<div class='slide__title-wrapper'>
<h2 class='slide__title about-slide__title_type_with-padding'>Trusted by</h2>
</div>
<div class="trusted-slide__list">
<img
class='trusted-slide__logo'
src='./images/logos/live-voice.png'
alt='LiveVoice'
/>
<img
class='trusted-slide__logo'
src='./images/logos/sera.png'
alt='Sera'
/>
<img
class='trusted-slide__logo'
src='./images/logos/poll-everywhere.png'
alt='Poll Everywhere'
/>
<img
class='trusted-slide__logo'
src='./images/logos/welcome.png'
alt='Welcome'
/>
<img
class='trusted-slide__logo'
src='./images/logos/callbell.png'
alt='Callbell'
/>
<img
class='trusted-slide__logo'
src='./images/logos/circle.png'
alt='Circle'
/>
<img
class='trusted-slide__logo'
src='./images/logos/vito.png'
alt='Vito'
/>
</div>
</section>

0 comments on commit a03757b

Please sign in to comment.