-
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
fe214ba
commit 7e6a227
Showing
25 changed files
with
99 additions
and
143 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
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 |
---|---|---|
|
@@ -7,5 +7,3 @@ | |
</nav> | ||
|
||
<router-outlet></router-outlet> | ||
|
||
|
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
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
15 changes: 7 additions & 8 deletions
15
angular-resources-page/src/app/pages/books/books.component.html
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 |
---|---|---|
@@ -1,9 +1,8 @@ | ||
<div class="container mx-auto mt-8"> | ||
<h1 class="text-2xl font-bold mb-4">Books</h1> | ||
<ul class="list-disc pl-6 space-y-2"> | ||
<li *ngFor="let book of books"> | ||
<a [href]="book.link" target="_blank">{{ book.title }}</a> by {{ book.author }} | ||
</li> | ||
</ul> | ||
</div> | ||
|
||
<h1 class="text-2xl font-bold mb-4">Books</h1> | ||
<ul class="list-disc pl-6 space-y-2"> | ||
<li *ngFor="let book of books"> | ||
<a [href]="book.link" target="_blank">{{ book.title }}</a> by {{ book.author }} | ||
</li> | ||
</ul> | ||
</div> |
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
46 changes: 26 additions & 20 deletions
46
angular-resources-page/src/app/pages/home/home.component.html
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 |
---|---|---|
@@ -1,22 +1,28 @@ | ||
<div class="container mx-auto text-center mt-12"> | ||
<h1 class="text-3xl font-bold mb-4">Alumni Resources</h1> | ||
<p class="text-gray-600 mb-8"> | ||
Explore resources to help you stay connected and grow professionally, including alumni contacts, useful websites, recommended books, and essential tools. | ||
</p> | ||
|
||
<div class="grid grid-cols-1 md:grid-cols-2 gap-4"> | ||
<button routerLink="/people" class="bg-blue-600 text-white p-4 rounded shadow hover:bg-blue-700"> | ||
People | ||
</button> | ||
<button routerLink="/websites" class="bg-blue-600 text-white p-4 rounded shadow hover:bg-blue-700"> | ||
Websites | ||
</button> | ||
<button routerLink="/books" class="bg-blue-600 text-white p-4 rounded shadow hover:bg-blue-700"> | ||
Books | ||
</button> | ||
<button routerLink="/tools" class="bg-blue-600 text-white p-4 rounded shadow hover:bg-blue-700"> | ||
Tools | ||
</button> | ||
</div> | ||
<h1 class="text-3xl font-bold mb-4">Alumni Resources</h1> | ||
<p class="text-gray-600 mb-8"> | ||
Explore resources to help you stay connected and grow professionally, including alumni contacts, | ||
useful websites, recommended books, and essential tools. | ||
</p> | ||
|
||
<div class="grid grid-cols-1 md:grid-cols-2 gap-4"> | ||
<button | ||
routerLink="/people" | ||
class="bg-blue-600 text-white p-4 rounded shadow hover:bg-blue-700" | ||
> | ||
People | ||
</button> | ||
<button | ||
routerLink="/websites" | ||
class="bg-blue-600 text-white p-4 rounded shadow hover:bg-blue-700" | ||
> | ||
Websites | ||
</button> | ||
<button routerLink="/books" class="bg-blue-600 text-white p-4 rounded shadow hover:bg-blue-700"> | ||
Books | ||
</button> | ||
<button routerLink="/tools" class="bg-blue-600 text-white p-4 rounded shadow hover:bg-blue-700"> | ||
Tools | ||
</button> | ||
</div> | ||
</div> |
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
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
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
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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export const environment = { | ||
production: true | ||
production: true, | ||
}; |
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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>AngularContactPage</title> | ||
<base href="/"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="icon" type="image/x-icon" href="favicon.ico"> | ||
</head> | ||
<body> | ||
<app-root></app-root> | ||
</body> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>AngularContactPage</title> | ||
<base href="/" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<link rel="icon" type="image/x-icon" href="favicon.ico" /> | ||
</head> | ||
<body> | ||
<app-root></app-root> | ||
</body> | ||
</html> |
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
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
Oops, something went wrong.