Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Propagate recent changes for deployment. #5

Merged
merged 7 commits into from
Apr 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/4-10-2024.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"map-of-pi/src/app/dialogs/information": patch
"map-of-pi": patch
---

Email correction.
Update Readme due to Frontend restructure from repo isolation initiative.
9 changes: 0 additions & 9 deletions .changeset/4-7-2024.md

This file was deleted.

5 changes: 0 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,31 +40,26 @@ The Map of Pi Front End Project was generated with [Angular CLI](https://github.

### Build the Project

- Change directory to front end using `cd frontend`.
- Run `ng build` to build the project.
- The build artifacts will be stored in the dist/ directory.

### Execute the Development Server

- Change directory to front end using `cd frontend`.
- Execute `ng serve` to spin up a dev server.
- Navigate to http://localhost:4200/ in your browser.
- The application will automatically reload if you change any of the source files.

### Execute Unit Tests

- Change directory to front end using `cd frontend`.
- Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).

### Execute the End-to-End Tests

- Change directory to front end using `cd frontend`.
- Run `ng e2e` to execute the end-to-end tests via a platform of your choice.
- To use this command, you need to first add a package that implements end-to-end testing capabilities.

### Code Scaffolding

- Change directory to front end using `cd frontend`.
- Run `ng generate component [component-name]` to generate a new component. - You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.

## <a name='team'></a>Team 🧑👩‍🦱🧔👨🏾‍🦱👨🏾
Expand Down
4 changes: 2 additions & 2 deletions src/app/dialogs/information/information.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ <h3>{{ version }}</h3>
</div>
<div class="social-media">
<div class="social-media__links">
<a href="mailto:info@mapofpi.com" class="social-media__link" aria-label="Email Us" target="_blank">
<a href="mailto:mapofpi@gmail.com" class="social-media__link" aria-label="Email Us" target="_blank">
<img src="../../../assets/images/shared/footer/email-icon.svg" alt="Map of Pi Email Address" class="social-media__icon">
</a>
<a href="https://facebook.com/mapofpi" class="social-media__link" aria-label="Facebook page" target="_blank">
Expand All @@ -36,6 +36,6 @@ <h3>{{ version }}</h3>
</div>
</div>
<div class="defects-contact">
<span>{{ 'INFORMATION_DIALOG.REPORTING_MESSAGE' | translate }} <a href="mailto:info@mapofpi.com" target="_blank">{{ email }}</a></span>
<span>{{ 'INFORMATION_DIALOG.REPORTING_MESSAGE' | translate }} <a href="mailto:mapofpi@gmail.com" target="_blank">{{ email }}</a></span>
</div>
</div>
2 changes: 1 addition & 1 deletion src/app/dialogs/information/information.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export class InformationComponent {

version: string = 'Beta V2.0';
logo: string = "../../assets/images/logo.svg";
email: string = 'info@mapofpi.com';
email: string = 'mapofpi@gmail.com';

stopPropagation(event: MouseEvent): void {
// prevent the click event from reaching the parent container.
Expand Down
2 changes: 1 addition & 1 deletion src/app/shared/footer/footer.component.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<footer class="footer">
<div class="footer__links">
<a href="mailto:info@mapofpi.com" class="footer__link" aria-label="Email Us" target="_blank">
<a href="mailto:mapofpi@gmail.com" class="footer__link" aria-label="Email Us" target="_blank">
<img src="../../../assets/images/shared/footer/email-icon.svg" alt="Map of Pi Email Address" class="footer__icon">
</a>
<a href="https://facebook.com/mapofpi" class="footer__link" aria-label="Facebook page" target="_blank">
Expand Down
2 changes: 1 addition & 1 deletion src/app/shared/privacy-policy/privacy-policy.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ export class PrivacyPolicyComponent {

constructor() {
this.lastUpdated = "3/1/2024";
this.emailAddress = "info@mapofpi.com";
this.emailAddress = "mapofpi@gmail.com";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ export class TermsOfServiceComponent {

constructor() {
this.lastUpdated = "3/10/2024";
this.emailAddress = "info@mapofpi.com";
this.emailAddress = "mapofpi@gmail.com";
}
}
Loading