feat: Added credits

This commit is contained in:
2025-05-04 01:02:03 +02:00
parent 2fc4134acc
commit 6c8b40cbad
7 changed files with 82 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
import { Component } from '@angular/core';
import { Link } from 'src/app/types/link';
@Component({
selector: 'app-about',
templateUrl: './about.component.html',
styleUrl: './about.component.scss'
})
export class AboutComponent {
LINKS: { title: string, info: string, icon: string, link: string }[] = [
{
title: "Autor",
info: "Jan Szumotalski",
icon: "person",
link: "https://github.com/Slasherss1/"
},
{
title: 'Źrodło',
info: 'Aplikacja jest darmowa i może ją uruchomić każdy!',
icon: 'code',
link: 'https://github.com/Slasherss1/ipwa-selfhosted'
},
{
title: "Licencja",
info: 'GPL-3.0',
icon: 'license',
link: 'https://www.gnu.org/licenses/gpl-3.0-standalone.html'
}
]
}