diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 2230539b..08635955 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,44 +4,46 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
@@ -57,9 +59,11 @@
@@ -78,11 +83,11 @@
+
-
@@ -97,9 +102,32 @@
+
+ 1699960224756
+
+
+
+ 1699960224756
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/sass/common/footer.scss b/sass/common/footer.scss
index 234b98c2..f069599c 100644
--- a/sass/common/footer.scss
+++ b/sass/common/footer.scss
@@ -1,11 +1,18 @@
+@import "../variables/media";
.footer {
background-color: var(--footer-bg);
padding: 30rem 0;
+ @media (max-width: $media-md) {
+ padding: 48rem 0;
+ }
&__description {
color: var(--black-white);
}
&__logo {
color: var(--common-green);
+ @media (max-width: $media-md) {
+ max-height: 40rem;
+ }
}
&__nav {
border-top: 1rem solid var(--common-grey);
@@ -13,10 +20,26 @@
justify-content: space-between;
padding: 20rem 0;
margin-top: 20rem;
+ @media (max-width: $media-md) {
+ margin-top: 32rem;
+ padding: 32rem 0;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ gap: 30rem;
+ }
+ }
+ &__nav-item {
+ @media (max-width: $media-md) {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: center;
+ }
}
&__link {
text-decoration: none;
color: var(--black-white);
+ padding: 8rem 16rem;
}
&__rw {
display: grid;
@@ -25,5 +48,11 @@
svg {
width: 100%;
}
+ @media (max-width: $media-md) {
+ grid-template-columns: 1fr;
+ align-items: center;
+ text-align: center;
+ gap: 30rem;
+ }
}
}
\ No newline at end of file
diff --git a/sass/common/header.scss b/sass/common/header.scss
index 9cfcc6eb..4ea0db29 100644
--- a/sass/common/header.scss
+++ b/sass/common/header.scss
@@ -1,3 +1,5 @@
+@import "../variables/media";
+
.header {
position: fixed;
left: 0;
@@ -5,10 +7,14 @@
width: 100%;
padding: 14rem 0;
z-index: 100;
+ @media (max-width: $media-md) {
+ background-color: var(--common-green-primery);
+ }
&__container {
display: flex;
justify-content: space-between;
align-items: center;
+ position: relative;
}
&__link a{
text-decoration: none;
@@ -16,15 +22,114 @@
color: var(--common-white);
cursor: pointer;
padding: 8rem 16rem;
+ @media (max-width: $media-md) {
+ color: var(--common-black);
+ }
}
&__logo {
color: var(--common-white);
+ display: flex;
+ align-items: center;
+ @media (max-width: $media-md) {
+ color: var(--common-green);
+ }
}
&__row {
- display: flex;
+ display: flex;
justify-content: space-between;
align-items: center;
+
+ @media (max-width: $media-md) {
+ position: absolute;
+ background-color: var(--common-green-primery);
+ top: 50rem;
+ width: 100%;
+ left: -100vw;
+ padding: 0 16rem;
+ overflow: scroll;
+ height: calc(100vh - 55rem);
+ display: flex;
+ align-items: center;
+ flex-direction: column;
+ gap: 16rem;
+ z-index: 80;
+ transition:left var(--transition), opacity var(--transition);
+
+ &.is-active {
+ left: 0;
+ opacity: 1;
+ }
+ }
+ }
+ &__btn {
+ @media (max-width: $media-md) {
+ margin-left: auto;
+ .button--main {
+ padding: 8rem 12rem;
+ min-width:107rem;
+ }
+ }
+ }
+ &__ul {
+ display: flex;
+ @media (max-width: $media-md) {
+ width: 100%;
+ flex-direction: column;
+ align-items: center;
+ gap: 16rem;
+ padding: 16rem 0;
+ border-top: 1rem solid var(--common-green-border);
+ border-bottom: 1rem solid var(--common-green-border);
+ }
+ }
+ &__menu-btn {
+ display: none;
+ @media (max-width: $media-md) {
+ display: block;
+ padding: 8rem 0 8rem 8rem ;
+ margin-left: 20rem;
+ display: flex;
+ align-items: center;
+ }
+ }
+ &__item {
+ text-align: center;
+ }
+ &__mobile {
+ display: none;
+ @media (max-width: $media-md) {
+ display: block;
+ }
+ }
+ &__app-link {
+ padding-bottom: 30rem;
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ gap: 16rem 0;
+ a {
+ display: block;
+ width: 100%;
+ }
+ svg {
+ width: 100%;
+ }
+ }
+ &__card {
+ padding: 20rem 0;
+ }
+ &__icon-title {
+ color: var(--common-black);
+ }
+ &__icon-text {
+ color: var(--common-grey-v2);
+ margin-bottom: 20rem;
+ }
+ &__line {
+ background-color: var( --common-line-color);
+ height: 1rem;
+ max-width: 240rem;
+ margin: 0 auto;
}
&--green {
background-color: var(--common-green-primery);
diff --git a/sass/component/animation.scss b/sass/component/animation.scss
index 9864ec91..18dbbc12 100644
--- a/sass/component/animation.scss
+++ b/sass/component/animation.scss
@@ -1,52 +1,55 @@
-.animation {
- &--right {
- .animation-item {
- left: 171rem!important;
- opacity: 0!important;
- transition: left var(--transition), opacity var(--transition);
+@import "../variables/media";
+@media (min-width: $media-md) {
+ .animation {
+ &--right {
+ .animation-item {
+ left: 171rem!important;
+ opacity: 0!important;
+ transition: left var(--transition), opacity var(--transition);
+ }
+
+ }
+ &--right-play {
+ .animation-item {
+ left: -20rem!important;
+ opacity: 1!important;
+ transition: left var(--transition), opacity var(--transition);
+ }
+
}
- }
- &--right-play {
- .animation-item {
- left: -20rem!important;
- opacity: 1!important;
- transition: left var(--transition), opacity var(--transition);
+ &--left {
+ .animation-item {
+ right: 171rem!important;
+ opacity: 0!important;
+ transition: right var(--transition), opacity var(--transition);
+ }
+
+ }
+ &--left-play {
+ .animation-item {
+ right: -20rem!important;
+ opacity: 1!important;
+ transition: right var(--transition), opacity var(--transition);
+ }
+
}
- }
+ &--down {
+ .animation-item {
+ margin-bottom: -271rem!important;
+ opacity: 0!important;
+ transition: margin-bottom var(--transition), opacity var(--transition);
+ }
- &--left {
- .animation-item {
- right: 171rem!important;
- opacity: 0!important;
- transition: right var(--transition), opacity var(--transition);
}
+ &--down-play {
+ .animation-item {
+ margin-bottom: 0rem!important;
+ opacity: 1!important;
+ transition: margin-bottom var(--transition), opacity var(--transition);
+ }
- }
- &--left-play {
- .animation-item {
- right: -20rem!important;
- opacity: 1!important;
- transition: right var(--transition), opacity var(--transition);
}
-
}
-
- &--down {
- .animation-item {
- margin-bottom: -271rem!important;
- opacity: 0!important;
- transition: margin-bottom var(--transition), opacity var(--transition);
- }
-
- }
- &--down-play {
- .animation-item {
- margin-bottom: 0rem!important;
- opacity: 1!important;
- transition: margin-bottom var(--transition), opacity var(--transition);
- }
-
- }
-}
\ No newline at end of file
+}
diff --git a/sass/component/buttons.scss b/sass/component/buttons.scss
index ef52abf2..ea59c2d8 100644
--- a/sass/component/buttons.scss
+++ b/sass/component/buttons.scss
@@ -1,3 +1,4 @@
+@import "../variables/media";
.button {
width: fit-content;
padding: 12rem 16rem;
diff --git a/sass/component/lang-switcher.scss b/sass/component/lang-switcher.scss
new file mode 100644
index 00000000..77d6f8a4
--- /dev/null
+++ b/sass/component/lang-switcher.scss
@@ -0,0 +1,51 @@
+@import "../variables/media";
+
+.lang-menu{
+ position: relative;
+ color: var(--black-white);
+ cursor: pointer;
+ input {
+ display: none;
+ }
+ &__label {
+ display: flex;
+ align-items: center;
+ cursor: pointer;
+ gap: 5rem;
+ }
+ &__link {
+ color: var(--black-white);
+ text-decoration: none;
+ }
+ &__menu {
+ display: none;
+ position: absolute;
+ background-color: var(--white-black);
+ bottom: 30rem;
+ right: 0;
+ z-index: 100;
+ color: var(--black-white);
+ padding: 10rem;
+ border-radius: 3rem;
+ flex-direction: column;
+ gap: 16rem;
+ grid-template-columns: repeat(3, 1fr);
+ overflow: scroll;
+ @media (max-width: $media-md) {
+ width: 100vw;
+ right: auto;
+ left: 50%;
+ transform: translateX(-50%);
+ }
+ }
+ &__trigger {
+ &:checked ~ .lang-menu__menu {
+ display: grid;
+ }
+ }
+ &__trigger {
+ &:checked ~ .lang-menu__label .lang-menu__arrow {
+ transform: scaleY(-1);
+ }
+ }
+}
\ No newline at end of file
diff --git a/sass/global/index.scss b/sass/global/index.scss
index a344d3e8..6fe4cee4 100644
--- a/sass/global/index.scss
+++ b/sass/global/index.scss
@@ -1,3 +1,5 @@
+@import "../variables/media";
+
html {
font-size: 1px;
}
@@ -11,5 +13,16 @@ body {
.container {
width: 100%;
margin: 0 auto;
+ padding: 0 16rem;
max-width: var(--container);
+}
+
+.logo .svg-logo {
+ @media(max-width: $media-md) {
+max-width: 130rem;
+ }
+}
+
+.frizz {
+overflow: hidden;
}
\ No newline at end of file
diff --git a/sass/global/reset.scss b/sass/global/reset.scss
index 86b0ff9a..97251fb8 100644
--- a/sass/global/reset.scss
+++ b/sass/global/reset.scss
@@ -6,6 +6,8 @@
.wrapper {
overflow: hidden;
}
+ul { list-style: none;
+}
button {
outline: none;
border: none;
diff --git a/sass/main.scss b/sass/main.scss
index cb6a266f..f2f5f3ae 100644
--- a/sass/main.scss
+++ b/sass/main.scss
@@ -1,4 +1,5 @@
/// Variables ///
+@import "./variables/media";
@import "./variables/color-theme";
@import "./variables/fonts";
@import "./variables/spasing";
@@ -13,6 +14,7 @@
@import "./common/footer";
// Component Style
+@import "./component/lang-switcher";
@import "./component/buttons";
@import "./component/switch-theme";
@import "./component/animation";
diff --git a/sass/pages/home.scss b/sass/pages/home.scss
index d88ad492..3eb62cd1 100644
--- a/sass/pages/home.scss
+++ b/sass/pages/home.scss
@@ -1,3 +1,4 @@
+@import "../variables/media";
// Hero Section
.hero {
@@ -9,15 +10,33 @@
justify-content: center;
position: relative;
+ @media (max-width: $media-md) {
+ background: url('/images/hero/hero-bg.jpg') center center / cover no-repeat cover;
+ min-height: auto;
+ padding: 120rem 0 51rem;
+ }
+
&__container {
display: flex;
justify-content: flex-start;
align-items: center;
position: relative;
+ @media (max-width: $media-md) {
+ flex-direction: column;
+ justify-content: center;
+ }
}
&__content {
max-width: 494rem;
+ z-index: 10;
+ @media (max-width: $media-md) {
+ text-align: center;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+margin-bottom: 35rem;
+ }
}
&__title {
@@ -33,6 +52,11 @@
top: 50%;
right: -20rem;
transform: translateY(-50%);
+ @media (max-width: $media-md) {
+ position: static;
+ transform: none;
+ width: 100%;
+ }
}
}
@@ -44,18 +68,30 @@
align-items: center;
justify-content: center;
min-height: 660rem;
+ @media (max-width: $media-md) {
+ min-height: auto;
+ padding: 40rem 0;
+ margin: 0;
+ }
&__container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
+ @media (max-width: $media-md) {
+ max-width: 150rem;
+ }
}
&__img {
background: var(--map-section-icon) center center / cover no-repeat;
width: 144rem;
height: 144rem;
margin-bottom: var(--mb-16);
+ @media (max-width: $media-md) {
+ max-width: 120rem;
+ max-height: 120rem;
+ }
}
&__title {
margin-bottom: var(--mb-16);
@@ -64,56 +100,110 @@
position: absolute;
left: calc(50% - 25rem);
top: calc(50% - 25rem);
+ @media (max-width: $media-md) {
+ border: var(--icon-border) solid var(--icon-border-green);
+ border-radius: 100rem;
+ }
&:nth-child(1) {
width: 96rem;
left: calc(50% + 175rem);
top: calc(50% - 85rem);
+ @media (max-width: $media-md) {
+ width: calc(30rem + var(--icon-border));
+ left: calc(50% - -95rem);
+ top: calc(50% - 59rem);
+ }
}
&:nth-child(2) {
width: 72rem;
left: calc(50% + 285rem);
top: calc(50% - -45rem);
+ @media (max-width: $media-md) {
+ width: calc(22rem + var(--icon-border));
+ left: calc(50% - -135rem);
+ top: calc(50% - 6rem);
+ }
}
&:nth-child(3) {
width: 96rem;
left: calc(50% - 395rem);
top: calc(50% + -86rem);
+ @media (max-width: $media-md) {
+ width: calc(30rem + var(--icon-border));
+ left: calc(50% - 125rem);
+ top: calc(50% - 59rem);
+ }
}
&:nth-child(4) {
width: 72rem;
left: calc(50% - 355rem);
top: calc(50% - -74rem);
+ @media (max-width: $media-md) {
+ width: calc(22rem + var(--icon-border));
+ left: calc(50% - 165rem);
+ top: calc(50% + -6rem);
+ }
}
&:nth-child(5) {
width: 80rem;
left: calc(50% - -375rem);
top: calc(50% + 153rem);
+ @media (max-width: $media-md) {
+ width: calc(25rem + var(--icon-border));
+ left: calc(50% - -89rem);
+ top: calc(50% + 43rem);
+
+ }
}
&:nth-child(6) {
width: 64rem;
left: calc(50% + 305rem);
top: calc(50% + -217rem);
+ @media (max-width: $media-md) {
+ width: calc(20rem + var(--icon-border));
+ left: calc(50% + 136rem);
+ top: calc(50% - 105rem);
+ }
}
&:nth-child(7) {
width: 80rem;
left: calc(50% + -275rem);
top: calc(50% + 223rem);
+ @media (max-width: $media-md) {
+ width: calc(25rem + var(--icon-border));
+ left: calc(50% - 117rem);
+ top: calc(50% - -43rem);
+ }
}
&:nth-child(8) {
width: 64rem;
left: calc(50% - 195rem);
top: calc(50% + -227rem);
+ @media (max-width: $media-md) {
+ width: calc(20rem + var(--icon-border));
+ left: calc(50% - 165rem);
+ top: calc(50% - 104rem);
+
+ }
}
}
}
// Services
.services {
-
+ &__btn {
+ @media (max-width: $media-md) {
+ margin: 0 auto;
+ }
+ }
&__container {
padding: 50rem 40rem;
border-radius: var(--border-r-24);
background-color: var(--bg-green);
+ @media (max-width: $media-md) {
+ padding: var( --container-mob-section) var( --container-mob-padding);
+ border-radius: 0;
+ }
}
&__item {
display: flex;
@@ -121,6 +211,13 @@
padding-bottom: 60rem;
gap: 50rem;
margin-right: -50rem;
+ @media (max-width: $media-md) {
+ flex-direction: column-reverse;
+ margin-right: 0;
+ gap: 40rem;
+ text-align: center;
+ padding-bottom: 120rem;
+ }
&:nth-child(2n) {
flex-direction: row-reverse;
margin-right: auto;
@@ -132,6 +229,13 @@
left: auto;
right: 0;
}
+ @media (max-width: $media-md) {
+ flex-direction: column-reverse;
+ margin-left: 0;
+ .services__card {
+ justify-content: center;
+ }
+ }
}
&:last-child {
padding-bottom: 0;
@@ -147,12 +251,20 @@
&__description {
margin: 24rem 0;
}
+
&__card {
position: relative;
flex-grow: 1;
display: flex;
justify-content: flex-end;
overflow: hidden;
+ @media (max-width: $media-md) {
+ width: 100%;
+ display: flex;
+ align-items: center;
+ flex-direction: row-reverse;
+ justify-content: center;
+ }
}
&__button {
position: absolute;
@@ -164,6 +276,11 @@
&__img {
padding: 20rem;
z-index: 3;
+ @media (max-width: $media-md) {
+ max-width: 140rem;
+ max-height: 240rem;
+ padding: 0;
+ }
&--first {
object-fit: cover;
z-index: 1;
@@ -173,6 +290,13 @@
top: 50%;
left: -19rem;
transform: translateY(-50%);
+ @media (max-width: $media-md) {
+ position: static;
+ transform: none;
+ max-width: 190rem;
+ max-height: 190rem;
+ margin-left: -60rem;
+ }
}
}
}
@@ -181,19 +305,38 @@
.single-section {
margin: 60rem 0;
overflow: hidden;
+ @media (max-width: $media-md) {
+ padding: var( --container-mob-section) 0;
+ margin:0;
+ }
&__container {
padding: 0rem 40rem 0;
border-radius: var(--border-r-24);
background-color: var(--bg-green);
+ @media (max-width: $media-md) {
+ padding: var(--container-mob-section) var(--container-mob-padding) 0;
+ }
}
&__item {
display: flex;
align-items: flex-end;
gap: 50rem;
+ @media (max-width: $media-md) {
+ gap: 20rem;
+ flex-direction: column;
+ }
}
&__content {
max-width: 498rem;
padding: 90rem 0;
+ @media (max-width: $media-md) {
+ margin: 0;
+ padding: 0;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ text-align: center;
+ }
}
&__title {
max-width: 357rem;
@@ -207,11 +350,14 @@ margin: 60rem 0;
display: flex;
justify-content: flex-end;
overflow: hidden;
+ @media (max-width: $media-md) {
+ justify-content: center;
+ }
}
&__img {
padding: 0;
z-index: 3;
- width: 90%;
+ width: 100%;
}
}
diff --git a/sass/variables/color-theme.scss b/sass/variables/color-theme.scss
index bc1963b4..921af75e 100644
--- a/sass/variables/color-theme.scss
+++ b/sass/variables/color-theme.scss
@@ -7,6 +7,10 @@
--common-green-btn: #006031;
--common-green-hover: #2b6445;
--common-grey: #D9DBDA;
+ --common-grey-v2: #5A5A5A;
+ --common-green-border: #99C4AF;
+ --common-line-color: #AEC5BA;
+ --common-black-sub: #26312C;
}
// Theme COLOR change
@@ -18,6 +22,7 @@
--bg-green: #E5F0EB;
--footer-bg: #F5F5F5;
--green-button: var(--common-green);
+ --icon-border-green: #66A686;
}
.dark {
@@ -28,4 +33,5 @@
--bg-green: #33453D;
--footer-bg: var(--common-black);
--green-button: #BBD7A7;
+ --icon-border-green: var(--common-white);
}
\ No newline at end of file
diff --git a/sass/variables/fonts.scss b/sass/variables/fonts.scss
index eb35274d..2c481dd2 100644
--- a/sass/variables/fonts.scss
+++ b/sass/variables/fonts.scss
@@ -1,11 +1,14 @@
//font-family: 'Inter', sans-serif;
//font-family: 'Lato', sans-serif;
+@import "../variables/media";
:root {
--main-font: 'Inter', sans-serif;
--sub-fonst: 'Lato', sans-serif;
--h1: 300 48rem/60rem var(--sub-fonst);
--h1-sub: 400 24rem/32rem var(--main-font);
+ --h3-boold: 700 24rem/32rem var(--main-font);
+ --h4: 500 18rem/28rem var(--main-font);
--p: 300 18rem/28rem var(--main-font);
--p-md: 400 16rem/28rem var(--main-font);
--p-sm: 500 14rem/28rem var(--main-font);
@@ -13,6 +16,20 @@
--nav-link: 500 16rem/28rem var(--main-font);
}
+@media (max-width: $media-md) {
+ :root {
+
+ --h1: 300 36rem/normal var(--sub-fonst);
+ --h1-sub: 400 18rem/32rem var(--main-font);
+ --p: 300 18rem/28rem var(--main-font);
+ --p-md: 400 16rem/28rem var(--main-font);
+ --p-sm: 500 14rem/28rem var(--main-font);
+ --p-sm-light: 300 14rem/28rem var(--main-font);
+ --p-sub: 300 12rem/28rem var(--main-font);
+ --nav-link: 500 13rem/24rem var(--main-font);
+ }
+}
+
// Title
.h1{
font: var(--h1);
@@ -31,6 +48,14 @@
color: var(--black-white);
}
+.h3-bold {
+ font: var( --h3-boold);
+ color: var(--common-black);
+}
+.h4 {
+ font: var(--h4);
+}
+
// Text
.p{
font: var(--p);
@@ -41,6 +66,9 @@
.p-sm {
font: var(--p-sm);
}
+.p-sm-light {
+ font: var(--p-sm-light);
+}
.nav-link{
font: var(--nav-link);
}
diff --git a/sass/variables/images.scss b/sass/variables/images.scss
index 91efb292..09439094 100644
--- a/sass/variables/images.scss
+++ b/sass/variables/images.scss
@@ -1,5 +1,6 @@
:root {
- --map-section-icon: url('images/open-map/open-map-logo.png');
+ --map-section-icon: url('/images/open-map/open-map-logo.png');
+
}
.light {
diff --git a/sass/variables/media.scss b/sass/variables/media.scss
new file mode 100644
index 00000000..2cb4a4c1
--- /dev/null
+++ b/sass/variables/media.scss
@@ -0,0 +1,3 @@
+// Media sm: Mobile, md: Tablet, xl: Desktop
+$media-md: 991px;
+
diff --git a/sass/variables/spasing.scss b/sass/variables/spasing.scss
index 4ad50b10..b8bbee46 100644
--- a/sass/variables/spasing.scss
+++ b/sass/variables/spasing.scss
@@ -8,4 +8,9 @@
--border-r-24: 24rem;
--transition: 0.5s;
+
+ --icon-border: 2rem;
+
+ --container-mob-section: 60rem;
+ --container-mob-padding: 16rem;
}
\ No newline at end of file
diff --git a/templates/base.html b/templates/base.html
index f6127891..31c350a8 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -9,6 +9,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/templates/common/footer.html b/templates/common/footer.html
index 0daa53b9..69292211 100644
--- a/templates/common/footer.html
+++ b/templates/common/footer.html
@@ -44,6 +44,9 @@
+
diff --git a/templates/common/header.html b/templates/common/header.html
index e59370ab..33400fbe 100644
--- a/templates/common/header.html
+++ b/templates/common/header.html
@@ -5,6 +5,7 @@
diff --git a/templates/components/language_selector.html b/templates/components/language_selector.html
index 9f10816a..8d4d0cd8 100644
--- a/templates/components/language_selector.html
+++ b/templates/components/language_selector.html
@@ -1,4 +1,4 @@
-
+
diff --git a/templates/robots.txt b/templates/robots.txt
new file mode 100644
index 00000000..1f53798b
--- /dev/null
+++ b/templates/robots.txt
@@ -0,0 +1,2 @@
+User-agent: *
+Disallow: /
diff --git a/templates/section/home-services.html b/templates/section/home-services.html
index 02dad048..895e7e2f 100644
--- a/templates/section/home-services.html
+++ b/templates/section/home-services.html
@@ -10,7 +10,7 @@
See the place you want to go while in an underground parking garage, and navigate while on a distant
hike.
-
+
Learn more
{% include 'ui/btn-arrow.html' %}
@@ -18,7 +18,7 @@
-
+
Learn more
{% include 'ui/btn-arrow.html' %}
@@ -35,7 +35,7 @@
See the place you want to go while in an underground parking garage, and navigate while on a distant
hike.
-
+
Learn more
{% include 'ui/btn-arrow.html' %}
@@ -60,7 +60,7 @@
See the place you want to go while in an underground parking garage, and navigate while on a distant
hike.
-
+
Learn more
{% include 'ui/btn-arrow.html' %}
diff --git a/templates/shortcodes/animation-section-js.html b/templates/shortcodes/animation-section-js.html
index 93311423..e86f853a 100644
--- a/templates/shortcodes/animation-section-js.html
+++ b/templates/shortcodes/animation-section-js.html
@@ -1,47 +1,52 @@
\ No newline at end of file
diff --git a/templates/shortcodes/header-switch.html b/templates/shortcodes/header-switch.html
index a90e248f..f2b7dd5f 100644
--- a/templates/shortcodes/header-switch.html
+++ b/templates/shortcodes/header-switch.html
@@ -1,17 +1,29 @@
\ No newline at end of file
diff --git a/templates/shortcodes/paralax.html b/templates/shortcodes/paralax.html
index 0b456cf7..ef5d5f09 100644
--- a/templates/shortcodes/paralax.html
+++ b/templates/shortcodes/paralax.html
@@ -1,56 +1,65 @@
\ No newline at end of file
diff --git a/templates/shortcodes/switch-theme.html b/templates/shortcodes/switch-theme.html
index fdcb365d..a2e8894e 100644
--- a/templates/shortcodes/switch-theme.html
+++ b/templates/shortcodes/switch-theme.html
@@ -1,5 +1,4 @@
\ No newline at end of file
diff --git a/templates/ui/icons/apps/app-galery.html b/templates/ui/icons/apps/app-galery.html
new file mode 100644
index 00000000..def364d2
--- /dev/null
+++ b/templates/ui/icons/apps/app-galery.html
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/templates/ui/icons/apps/app-store.html b/templates/ui/icons/apps/app-store.html
new file mode 100644
index 00000000..f15b2728
--- /dev/null
+++ b/templates/ui/icons/apps/app-store.html
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/templates/ui/icons/apps/f-droid.html b/templates/ui/icons/apps/f-droid.html
new file mode 100644
index 00000000..39d098ec
--- /dev/null
+++ b/templates/ui/icons/apps/f-droid.html
@@ -0,0 +1,88 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/templates/ui/icons/apps/google-play.html b/templates/ui/icons/apps/google-play.html
new file mode 100644
index 00000000..d0e704e6
--- /dev/null
+++ b/templates/ui/icons/apps/google-play.html
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/templates/ui/icons/header/code.html b/templates/ui/icons/header/code.html
new file mode 100644
index 00000000..d8f608cd
--- /dev/null
+++ b/templates/ui/icons/header/code.html
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/ui/icons/header/donate.html b/templates/ui/icons/header/donate.html
new file mode 100644
index 00000000..909ba971
--- /dev/null
+++ b/templates/ui/icons/header/donate.html
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/templates/ui/icons/header/location.html b/templates/ui/icons/header/location.html
new file mode 100644
index 00000000..a61d35f1
--- /dev/null
+++ b/templates/ui/icons/header/location.html
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file