Skip to content

Commit

Permalink
Remove LaPaz event
Browse files Browse the repository at this point in the history
  • Loading branch information
combimauri committed Sep 20, 2024
1 parent f51bcc0 commit e9e6d43
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions src/components/home/next-events/next-events.component.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { NgFor, UpperCasePipe } from '@angular/common';
import { NgFor, NgIf, UpperCasePipe } from '@angular/common';
import { Component } from '@angular/core';

@Component({
selector: 'ng-next-events',
standalone: true,
imports: [NgFor, UpperCasePipe],
imports: [NgFor, NgIf, UpperCasePipe],
template: `
<div class="next-events">
<div class="container">
Expand All @@ -26,17 +26,20 @@ import { Component } from '@angular/core';
{{ 'Inscríbete al evento' | uppercase }}
</a>
</div>
<p *ngIf="!events.length">
No hay eventos próximos por el momento. ¡Vuelve pronto!
</p>
</div>
</div>
</div>
`,
})
export class NextEventsComponent {
events = [
{
title: 'Meetup La Paz',
link: 'https://lu.ma/4dvwydxw',
image: '/img/meetup-la-paz.webp',
},
// {
// title: 'Meetup La Paz',
// link: 'https://lu.ma/4dvwydxw',
// image: '/img/meetup-la-paz.webp',
// },
];
}

0 comments on commit e9e6d43

Please sign in to comment.