-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1152898
commit 0e91470
Showing
42 changed files
with
1,049 additions
and
457 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
72 changes: 0 additions & 72 deletions
72
client/src/app/components/connect-repo/connect-repo.component.html
This file was deleted.
Oops, something went wrong.
131 changes: 0 additions & 131 deletions
131
client/src/app/components/connect-repo/connect-repo.component.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<footer class="flex items-center justify-center h-6 bg-gray-100 border-t border-gray-200 text-xs text-gray-500"> | ||
<div class="flex items-center gap-2"> | ||
<a routerLink="/about" class="hover:text-gray-700 hover:underline">About</a> | ||
<span class="text-gray-300">|</span> | ||
<a routerLink="/privacy" class="hover:text-gray-700 hover:underline">Privacy Policy</a> | ||
<span class="text-gray-300">|</span> | ||
<a routerLink="/imprint" class="hover:text-gray-700 hover:underline">Imprint</a> | ||
<span class="text-gray-300">|</span> | ||
</div> | ||
</footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { Component } from '@angular/core'; | ||
import { RouterLink } from '@angular/router'; | ||
|
||
@Component({ | ||
selector: 'app-footer', | ||
imports: [RouterLink], | ||
templateUrl: './footer.component.html', | ||
}) | ||
export class FooterComponent {} |
Oops, something went wrong.