aboutsummaryrefslogtreecommitdiff
path: root/src/app/components/footer/footer.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/components/footer/footer.component.ts')
-rw-r--r--src/app/components/footer/footer.component.ts18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/app/components/footer/footer.component.ts b/src/app/components/footer/footer.component.ts
new file mode 100644
index 0000000..e83f840
--- /dev/null
+++ b/src/app/components/footer/footer.component.ts
@@ -0,0 +1,18 @@
+import { Component, OnInit } from '@angular/core';
+
+@Component({
+ selector: 'app-footer',
+ templateUrl: './footer.component.html',
+ styleUrls: ['./footer.component.css']
+})
+export class FooterComponent implements OnInit {
+ public version: string = "v0.1";
+ public licenseUrl: string = "https://github.com/Team-Kaleidoscope/DevHive-Angular/blob/main/LICENSE";
+ public organizationUrl: string = "https://github.com/Team-Kaleidoscope";
+
+ constructor() { }
+
+ ngOnInit(): void {
+ }
+
+}