Added contents

This commit is contained in:
Lorenzo Iovino 2023-12-31 01:04:33 +01:00
parent 8b20acfcc4
commit 5fa5d27008
52 changed files with 537 additions and 139 deletions

View file

@ -1,4 +1,4 @@
<div class="bottom-0 bg-secondary w-full flex flex-col">
<div class="static bottom-0 bg-secondary w-full flex flex-col">
<iov-fish></iov-fish>
<iov-card [ctaUrl]="'hello'"
class="mr-8 ml-8 relative -top-12">
@ -12,22 +12,19 @@
Let's Talk!
</span>
</iov-card>
<div class="text-right text-sm text-white p-4">
<div class="">Website made with Angular
<div class="text-right text-xs text-white p-4">
<div class="">Made with Angular
<a href="https://angular.io/">
<img class="h-6 w-6 mx-1 inline-grid" src="/assets/angular.svg">
<img class="h-6 w-6 mx-1 inline-grid" ngSrc="/assets/angular.svg" height="16" width="16">
</a>
</div>
<div>
and TailwindCSS
<a href="https://tailwindcss.com/">
<img class="h-6 w-6 mx-1 inline-grid" src="/assets/tailwind.svg">
</a>
<br/>
</div>
<div class="mt-2 font-bold">
<a href="https://github.com/lokenxo/loreiov.com">
Code <img src="/assets/github.svg" class="h-6 w-6 mx-1 inline-block" alt=""></a>
</div>
and TailwindCSS
<a href="https://tailwindcss.com/">
<img class="h-6 w-6 mx-1 inline-grid" ngSrc="/assets/tailwind.svg" height="16" width="16">
</a>
<br/>
<br/>
<a href="https://github.com/lokenxo/loreiov.com">
Check the source code <img ngSrc="/assets/github.svg" class="h-6 w-6 mx-1 inline-block" alt="" height="800"
width="800"></a>
</div>
</div>

View file

@ -1,13 +1,15 @@
import { Component } from '@angular/core';
import {FishComponent} from "../fish/fish.component";
import {CardCtaComponent} from "../card-cta/card-cta.component";
import {NgOptimizedImage} from "@angular/common";
@Component({
selector: 'iov-footer',
standalone: true,
imports: [
CardCtaComponent,
FishComponent
FishComponent,
NgOptimizedImage
],
templateUrl: './footer.component.html',
styleUrl: './footer.component.scss'