@@ -190,8 +198,8 @@
Lectus arcu bibendum at varius vel pharetra vel turpis nunc. Eget aliquet nibh praesent tristique magna sit amet purus gravida. Sit amet mattis vulputate enim nulla aliquet.
-
-
+
+
diff --git a/src/app/components/landing/landing.component.scss b/src/app/components/landing/landing.component.scss
index 302bdd3..ed84233 100644
--- a/src/app/components/landing/landing.component.scss
+++ b/src/app/components/landing/landing.component.scss
@@ -9,8 +9,33 @@
#testimonial-card{
background:linear-gradient(0deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), radial-gradient(77.36% 256.97% at 77.36% 57.52%, #EFE1AF 0%, #C3DCFA 100%);
}
-a{
- color:none;
+
+.box-wrapper{
+ padding:2px;
+}
+
+.border-10{
+ border-radius:10px;
+}
+
+.gradient-yellow{
+ background: linear-gradient(180deg, rgba(253, 228, 165, 0.2),rgba(187, 199, 205, 0.2)), linear-gradient(90deg, rgba(253, 228, 165, 0.2),rgba(187, 199, 205, 0.2));
+}
+
+.gradient-yellow-2{
+ background: linear-gradient(90deg, rgba(187, 199, 205, 0.2),rgba(251, 199, 145, 0.2)), linear-gradient(180deg, rgba(253, 228, 165, 0.2),rgba(145, 210, 204, 0.2));
+}
+
+.gradient-blue{
+ background: linear-gradient(180deg, rgba(145,226,237,0.2),rgba(251, 199, 145, 0.2)), linear-gradient(90deg, rgba(253, 228, 165, 0.2), rgba(172, 180, 223, 0.2));
+}
+
+.gradient-purple{
+ background: linear-gradient(90deg, rgba(145, 226, 237, 0.2), rgba(172, 180, 223, 0.2)), linear-gradient(180deg, rgba(172, 180, 223, 0.2), rgba(246, 158, 188, 0.2));
+}
+
+.gradient-purple-2{
+ background: linear-gradient(90deg, rgba(187, 199, 205, 0.2), rgba(246, 158, 188, 0.2)), linear-gradient(180deg, rgba(145, 226, 237, 0.2), rgba(160, 158, 188, 0.2));
}
@media (min-width:769px){
diff --git a/src/app/components/landing/landing.component.ts b/src/app/components/landing/landing.component.ts
index 02fd004..61fa5ca 100644
--- a/src/app/components/landing/landing.component.ts
+++ b/src/app/components/landing/landing.component.ts
@@ -1,5 +1,4 @@
import { Component, OnInit } from '@angular/core';
-
@Component({
selector: 'app-landing',
templateUrl: './landing.component.html',
@@ -10,6 +9,8 @@ export class LandingComponent implements OnInit {
constructor() { }
ngOnInit(): void {
+ let themeElement = document.getElementById('theme-css');
+ themeElement.setAttribute('href','assets/theme/saga-blue/theme.css');
}
}