agregar vista publica de vehiculos aun faltan cambios

This commit is contained in:
2025-07-17 19:55:28 -04:00
parent 2e99d7b290
commit 31ffabe6cc
965 changed files with 252291 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import { credits, currentYear } from '@/app/common/constants'
import { Component, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'
@Component({
selector: 'app-footer',
standalone: true,
imports: [],
templateUrl: './footer.component.html',
styles: ``,
schemas: [CUSTOM_ELEMENTS_SCHEMA],
})
export class FooterComponent {
year = currentYear
credits = credits
}