Full reformat
This commit is contained in:
34
src/app/modules/dock/dock.component.ts
Normal file
34
src/app/modules/dock/dock.component.ts
Normal file
@@ -0,0 +1,34 @@
|
||||
import { CommonModule } from "@angular/common";
|
||||
import { Component } from "@angular/core";
|
||||
import { Link } from "../../interfaces/link";
|
||||
import { LinkComponent } from "../link/link.component";
|
||||
|
||||
@Component({
|
||||
standalone: true,
|
||||
selector: "app-dock",
|
||||
imports: [CommonModule, LinkComponent],
|
||||
templateUrl: "./dock.component.html",
|
||||
styleUrls: ["./dock.component.less"],
|
||||
})
|
||||
export class DockComponent {
|
||||
readonly links: Link[] = [
|
||||
{
|
||||
id: 0,
|
||||
svg: "../../../assets/svg/logo-telegram.svg",
|
||||
url: "https://t.me/neur0w0men",
|
||||
text: "Telegram channel",
|
||||
},
|
||||
{
|
||||
id: 1,
|
||||
svg: "../../../assets/svg/logo-github.svg",
|
||||
url: "https://github.com/MrSedan",
|
||||
text: "Admin's GitHub",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
svg: "../../../assets/svg/logo-gitea.svg",
|
||||
url: "https://git.nwaifu.su",
|
||||
text: "Gitea",
|
||||
},
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user