diff --git a/public/img/me.png b/public/img/me.png new file mode 100644 index 0000000..2d91562 Binary files /dev/null and b/public/img/me.png differ diff --git a/src/app/pages/home/home.html b/src/app/pages/home/home.html index 5f2c53f..be8f86a 100644 --- a/src/app/pages/home/home.html +++ b/src/app/pages/home/home.html @@ -1 +1,19 @@ -

home works!

+
+
+ + {{ 'home.subheader' | translate }} + +
+
+ +
+ + +
+
+ + + +
+
+
\ No newline at end of file diff --git a/src/app/pages/home/home.scss b/src/app/pages/home/home.scss index e69de29..8fb417e 100644 --- a/src/app/pages/home/home.scss +++ b/src/app/pages/home/home.scss @@ -0,0 +1,10 @@ +main { + img { + filter: drop-shadow(0 0 30px rgb(from var(--primary-color) r g b / 0.2)); + mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%); + } +} + +.text-gray { + color: rgb(from var(--content-color) r g b / 0.7); +} \ No newline at end of file diff --git a/src/app/pages/home/home.ts b/src/app/pages/home/home.ts index 09da8ff..276e539 100644 --- a/src/app/pages/home/home.ts +++ b/src/app/pages/home/home.ts @@ -1,8 +1,12 @@ import { Component } from '@angular/core'; +import { TranslatePipe } from '@ngx-translate/core'; +import { ChipModule } from 'primeng/chip'; +import { FontAwesomeModule } from "@fortawesome/angular-fontawesome"; +import { ButtonModule } from 'primeng/button'; @Component({ selector: 'app-home', - imports: [], + imports: [TranslatePipe, ChipModule, FontAwesomeModule, ButtonModule], templateUrl: './home.html', styleUrl: './home.scss' })